少说话多写代码之Python学习021——导入模块

栏目: Python · 发布时间: 6年前

内容简介:从其他模块导入函数时,通常我们使用import 模块,或者

从其他模块导入函数时,通常我们使用

import 模块,

或者

from 模块 import 函数

如果导入指定的几个函数,可以这样

from 模块 import 函数1,函数2,函数3

或者

from 模块 import *

最后一种表示从某模块中导入所有函数。

对于导入的模块和函数,我们可以给这个模块和函数起别名。例如,下面导入了math模块,

import math as foobar
v1=foobar.sqrt(2)
v2=foobar.sqrt(81)
print(v1)
print(v2)

输出

1.4142135623730951
9.0

math模块别名为foobar,使用foobar.sqrt调用了math中开平方的方法。

再比如,对函数命别名,

from math import  pow as hoobar
v3=hoobar(2,3)
print(v3)

输出

8.0

这样,将math中pow 函数命名为hoobar,用hoobar完成幂运算。

工程文件下载: https://download.csdn.net/download/yysyangyangyangshan/10712521


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Programming Computer Vision with Python

Programming Computer Vision with Python

Jan Erik Solem / O'Reilly Media / 2012-6-22 / USD 39.99

If you want a basic understanding of computer vision's underlying theory and algorithms, this hands-on introduction is the ideal place to start. As a student, researcher, hacker, or enthusiast, you'll......一起来看看 《Programming Computer Vision with Python》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具