Python基本数学计算

2017-09-08  本文已影响13人  逑熙
向上取整、向下取整以及四舍五入函数
import math

f = 11.2
print math.ceil(f) #向上取整
print math.floor(f) #向下取整
print round(f) #四舍五入

#这三个函数的返回结果都是浮点型,需要int()转换

result:

12.0
11.0
11.0
开方
#!/usr/bin/python
import math   #sqrt()是不能直接访问的,需要导入 math 模块,通过静态对象调用该方法。

print "math.sqrt(100) : ", math.sqrt(100)
print "math.sqrt(7) : ", math.sqrt(7)
print "math.sqrt(math.pi) : ", math.sqrt(math.pi)

#这三个函数的返回结果都是浮点型,需要int()转换

result:

math.sqrt(100) :  10.0
math.sqrt(7) :  2.64575131106
math.sqrt(math.pi) :  1.77245385091
上一篇下一篇

猜你喜欢

热点阅读