Python中调用数学函数需要导入math模块,然后使用该模块提供的内置函数。
以下是一些常用的数学函数的调用方法:
import math
result = math.sqrt(16)
print(result) # 输出:4.0
import math
result = math.fabs(-5)
print(result) # 输出:5.0
import math
result = math.ceil(3.7)
print(result) # 输出:4
import math
result = math.floor(3.7)
print(result) # 输出:3
import math
result = round(3.7)
print(result) # 输出:4
import math
result = math.pow(2, 3)
print(result) # 输出:8.0
import math
result = math.log(10)
print(result) # 输出:2.302585092994046
import math
result = math.exp(1)
print(result) # 输出:2.718281828459045
import math
result = math.sin(math.pi/2)
print(result) # 输出:1.0
import math
result = math.cos(math.pi)
print(result) # 输出:-1.0
这些是常用的数学函数的调用方法,math模块还提供了其他数学函数,可以通过阅读Python官方文档或math模块的文档了解更多函数的用法。