首页 > 代码库 > Python学习笔记2—模块

Python学习笔记2—模块

模块的使用

引用模块的两种形式

形式一: import module_name

形式二: from module1 import module11   (module11是module的子模块)

例:引用精确除法模块

>>> 5/22>>> from __future__ import division>>> 5/22.5>>> 5//22>>> 

如过需要进行开方,乘方,对数等运算就需要用到Python中的Math模块

>>> import math>>> dir(math)    #查看该模块提供的功能[__doc__‘, __file__‘, __name__‘, __package__‘, acos‘, acosh‘, asin‘, asinh‘, atan‘, atan2‘, atanh‘, ceil‘, copysign‘, cos‘, cosh‘, degrees‘, e‘, erf‘, erfc‘, exp‘, expm1‘, fabs‘, factorial‘, floor‘, fmod‘, frexp‘, fsum‘, gamma‘, hypot‘, isinf‘, isnan‘, ldexp‘, lgamma‘, log‘, log10‘, log1p‘, modf‘, pi‘, pow‘, radians‘, sin‘, sinh‘, sqrt‘, tan‘, tanh‘, trunc]>>> help(math.pow)   #查看函数的使用方法Help on built-in function pow in module math:pow(...)    pow(x, y)        Return x**y (x to the power of y).(END) 

在交互模式下输入q退出交互模式

>>> math.pow(4,2)       #表示4的乘方16.0>>> math.pow(3,2)9.0
>>> 4**2
16

 

Python学习笔记2—模块