求幂
a, b = 2, 3
(a ** b) # = 8
pow(a, b) # = 8
import math
math.pow(a, b) # = 8.0 (always float; does not allow complex results)
import operator
operator.pow(a, b) # = 8
内置的 pow
和 math.pow
之间的另一个区别是内置的 pow
可以接受三个参数:
a, b, c = 2, 3, 2
pow(2, 3, 2) # 0, calculates (2 ** 3) % 2, but as per Python docs,
# does so more efficiently
特殊功能
函数 math.sqrt(x)
计算 x
的平方根。
import math
import cmath
c = 4
math.sqrt(c) # = 2.0 (always float; does not allow complex results)
cmath.sqrt(c) # = (2+0j) (always complex)
要计算其他根,例如立方根,请将数字增加到根的度数的倒数。这可以使用任何指数函数或运算符来完成。
import math
x = 8
math.pow(x, 1/3) # evaluates to 2.0
x**(1/3) # evaluates to 2.0
函数 math.exp(x)
计算 e ** x
。
math.exp(0) # 1.0
math.exp(1) # 2.718281828459045 (e)
函数 math.expm1(x)
计算 e ** x - 1
。当 x
很小时,这比 math.exp(x) - 1
具有更好的精度。
math.expm1(0) # 0.0
math.exp(1e-6) - 1 # 1.0000004999621837e-06
math.expm1(1e-6) # 1.0000005000001665e-06
# exact result # 1.000000500000166666708333341666...