pow(x, y)
返回 x 的 y 次幂。看下示例:
import math x = 3 y = 2 print(math.pow(x, y))
fsum(iterable)
返回迭代器中所有元素的和。看下示例:
import math print(math.fsum((1, 2, 3, 4, 5)))
gcd(x, y)
返回整数 x 和 y 的最大公约数。看下示例:
import math x = 9 y = 6 print(math.gcd(x, y))
sqrt(x)
返回 x 的平方根。看下示例:
import math x = 9 print(math.sqrt(x))
trunc(x)
返回 x 的整数部分。看下示例:
import math x = 1.1415926 print(math.trunc(x))
exp(x)
返回 e 的 x 次幂。看下示例:
import math x = 2 print(math.exp(2))
log(x[, base])
返回 x 的对数,底数默认为 e。看下示例:
import math x = 10 y = 10 # 不指定底数 print(math.log(x)) # 指定底数 print(math.log(x, y))