内容简介:从其他模块导入函数时,通常我们使用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
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 使用 ESLint 禁止项目导入特定模块
- 你知道 JS 中的模块导入有一个缺点吗?
- Chrome 63 Beta:支持动态模块导入,新增设备内存 API
- Es6中模块(Module)的默认导入导出及加载顺序
- Nimporter 1.0.0 发布,导入时将 Nim 编译为 Python 模块
- Es6中的模块化Module,导入(import)导出(export)
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
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》 这本书的介绍吧!