import math
print(dir(math))
[ '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', 'remainder',
'sin', 'sinh', 'sqrt', 'tan', 'tanh', 'tau', 'trunc']
常量
nan
描述:浮点“非数字”(NaN)值。 相当于 float(‘nan’) 的输出。
语法:math.nan
math.nan
nan
inf
描述:浮点正无穷大。 (对于负无穷大,使用 -math.inf 。)相当于float('inf')
的输出。
语法:math.inf
math.inf
inf
pi
描述:圆周率。数学常数 π = 3.141592…,精确到可用精度。
语法:math.pi
math.pi
3.141592653589793
e
描述:数学常数 e = 2.718281…,精确到可用精度。
语法:math. e
math.e
2.718281828459045
数论与表示函数
ceil()
描述:向上取整数,返回 x 的上限,即大于或者等于 x 的最小整数
语法:math.ceil(x)
print(math.ceil(3.4))
print(math.ceil(3.5))
print(math.ceil(-3.4))
print(math.ceil(-3.5))
floor()
描述:返回 x 的向下取整,小于或等于 x 的最大整数。如果 x 不是浮点数,则委托 x.floor() ,它应返回 Integral 值。
语法:math.floor( x )
print(math.floor(3.4))
print(math.floor(3.9))
fabs()
描述:返回数字的绝对值
语法:math.fabs( x )
print(math.fabs(3.5))
print(math.fabs(-3.4))
fmod()
描述:返回余数,函数 fmod() 在使用浮点数时通常是首选,而Python的 x % y 在使用整数时是首选。
语法:math.fmod(x, y)
print(math.fmod(4,3))
print(math.fmod(8.2,3))
isinf()
描述:如果 x 是正或负无穷大,则返回 True ,否则返回 False 。
语法:math.isinf()
math.isinf(math.inf)
True
math.isinf(-math.inf)
True
isnan()
描述:如果 x 是 NaN(不是数字),则返回 True ,否则返回 False 。
语法:math.isnan(x)
math.isnan(math.nan)
True
isfinite()
描述:如果 x 既不是无穷大也不是NaN,则返回 True ,否则返回 False 。 (注意 0.0 被认为 是 有限的。)
语法:math.isfinite(x)
math.isfinite(2)
True
math.isfinite(math.nan)
False
math.isfinite(math.inf)
False
modf()
描述:返回 x 的小数和整数部分。两个结果都带有 x 的符号并且是浮点数。
语法:math.modf(x)
math.modf(3.71828)
(0.71828, 3.0)
trunc()
描述:返回 Real 值 x 截断为 Integral (通常是整数)
语法:math.trunc(x)
math.trunc(3.718281828459045)
3
幂函数与对数函数
exp()
描述:返回 e 次 x 幂,其中 e = 2.718281… 是自然对数的基数。这通常比 math.e ** x 或 pow(math.e, x) 更精确。
语法:math.exp( x )
注意:exp()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。
math.exp(1)
2.718281828459045
math.exp(0)
1.0
math.exp(3)
20.08553692318766
log()
描述:使用一个参数,返回 x 的自然对数(底为 e )。
语法:math.log(x[, base])
参数:
- x – 数值表达式。
- base – 可选,底数,默认为 e。
math.log(math.e)
1.0
math.log(20)
2.995732273553991
math.log(100,10)#返回以10为底的对数
2.
log2()
描述:返回 x 以2为底的对数。这通常比 log(x, 2) 更准确。
语法:math.log2(x)
math.log2(8)
3.0
log10()
描述:返回 x 底为10的对数。这通常比 log(x, 10) 更准确。
语法:math.log10( x )
math.log10(100)
2.0
math.log10(1000)
3.0
pow()
描述:返回 (x的y次方) 的值。与内置的 ** 运算符不同, math.pow() 将其参数转换为 float 类型。使用 内置的 pow() 函数来计算精确的整数幂。
语法:math.pow( x, y )
math.pow( 2, 4 )
16.0
math.pow( 10, 2 )
100.0
sqrt()
描述:返回数字x的平方根。
语法:math.sqrt( x )
math.sqrt(4)
2.0
math.sqrt(100)
10.0
math.sqrt(7)
2.6457513110645907
math.sqrt(math.pi)
1.77245385090551