文章摘要:怎么导入python数学函数 Python如何导入函数
在python中导入数学函数的方法 python中使用数学函数时需要先引入math模块 1.math.radi […]
在python中导入数学函数的方法
python中使用数学函数时需要先引入math模块
1.math.radians()函数
math.sqrt()函数可以将角度转弧度
用法:
import math
math.radians(57.29578)
>>>0.9948376736367679
2. math.pi函数
math.pi函数的功能是计算圆周率
用法:
import math
math.pi
>>>3.141592653589793