例如:打印出16的平方根
1 import math 2 x=16.0 3 y=math.sqrt(x) 4 print(x,y,math.pi) 5 x=math.pi/6 6 y=math.sin(x) 7 print(y)
[root@localhost ~]# python 1.py (16.0, 4.0, 3.141592653589793) 0.5
查看模块里的函数
import math
help(math)
例2:
1 import math 2 x=2 3 y=3 4 a=math.pow(x,y) 5 print(int(a)) #int()将浮点数转换成整数