模块(module)
Posted 芬乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模块(module)相关的知识,希望对你有一定的参考价值。
1.模块加载
- import math
- print(math.pi) 结果是:3.141592653589793
2.模块的调用
- from math import pi
- print(pi) //同样会输出:3.141592653589793
3.内建的dir()函数
- 当提供了一个模块名的时候,返回模块定义的名称列表。没有参数,就返回当前模块中定义的名称列表。
- dir(math)
- 输出:[‘__doc__‘, ‘__loader__‘, ‘__name__‘, ‘__package__‘, ‘__spec__‘, ‘acos‘, ‘acosh‘, ‘asin‘, ‘asinh‘, ‘atan‘, ‘atan2‘, ‘atanh‘, ‘ceil‘, ‘copysign‘, ‘cos‘, ‘cosh‘, ‘degrees‘, ‘e‘, ‘erf‘, ‘erfc‘, ‘exp‘, ‘expm1‘, ‘fabs‘, ‘factorial‘, ‘floor‘, ‘fmod‘, ‘frexp‘, ‘fsum‘, ‘gamma‘, ‘gcd‘, ‘hypot‘, ‘inf‘, ‘isclose‘, ‘isfinite‘, ‘isinf‘, ‘isnan‘, ‘ldexp‘, ‘lgamma‘, ‘log‘, ‘log10‘, ‘log1p‘, ‘log2‘, ‘modf‘, ‘nan‘, ‘pi‘, ‘pow‘, ‘radians‘, ‘sin‘, ‘sinh‘, ‘sqrt‘, ‘tan‘, ‘tanh‘, ‘trunc‘]
4.创建模快
def sayhi(): print ‘Hi, this is mymodule speaking.‘ version=‘0.1‘
以上是关于模块(module)的主要内容,如果未能解决你的问题,请参考以下文章
如何使用模块化代码片段中的LeakCanary检测内存泄漏?
[react] Module not found: Can't resolve 'schedule' in 'C:Usersadcaldvmtn7myapp (代码片段
解决go: go.mod file not found in current directory or any parent directory; see ‘go help modules‘(代码片段