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