math模块的使用

math 是python的内置模块,可以通过import math 后使用

查看math模块的内容

import math
>>> import math
>>> math

>>> 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', 'tau', 'trunc']
>>> 
  1. math.pi π的值
>>> math.pi
3.141592653589793
>>> 
  1. math.ceil()天花板函数
>>> math.ceil(2.5)
3
  1. math.floor(2.5)
>>> math.floor(2.5)
2
  1. math.degree() 弧度角度转换
  2. math.sin()等三角函数计算

你可能感兴趣的:(Python学习笔记)