1.math模块常用方法:
import math #π的值 print(math.pi) #计算90度的正弦值 print(math.sin(math.pi/2)) #幂运算,2的十次方 print(math.pow(2,10)) print(math.log(2))