4、把x从弧度转换成角度
import math print(math.degrees(math.pi/4))
5、e表示一个常量
import math print(math.e)
6、exp()返回math.e(其值为2.71828)的x次方
import math print(math.exp(2))
7、expm1()返回math.e的x(其值为2.71828)次方的值减1
import math print(math.expm1(2))
8、fabs()返回x的绝对值
import math print(math.fabs(-0.03))
9、factorial()取x的阶乘的值
import math print(math.factorial(3))