DrZhang Python有很多内置的module可以使用。 import math print(math.pi) print(math.sqrt(16)) help(math) # 查看帮助 from math import pi # 只提取部分功能 print(pi) # 提取后,