📅  最后修改于: 2023-12-03 15:17:33.437000             🧑  作者: Mango
在编写数学相关的程序时,经常需要用到数学函数。Python中的math库提供了一系列常用的数学函数,可以方便地进行数学计算和处理。
返回x的绝对值。
x = -10
print(abs(x)) # 输出结果为10
返回x的y次方。
x = 2
y = 3
print(pow(x, y)) # 输出结果为8
返回x的平方根。
x = 16
print(sqrt(x)) # 输出结果为4
返回x弧度的正弦值。
import math
x = math.pi / 2
print(sin(x)) # 输出结果为1.0
返回x弧度的余弦值。
import math
x = math.pi
print(cos(x)) # 输出结果为-1.0
返回x弧度的正切值。
import math
x = 0
print(tan(x)) # 输出结果为0.0
返回x的自然对数。
import math
x = 10
print(log(x)) # 输出结果为2.302585092994046