首页 > 代码库 > python中的math.ceil(x)和math.floor(x)

python中的math.ceil(x)和math.floor(x)

一 math.ceil(x)

import math

1、当x为正数时,只要x的小数部分>0就+1

x=5.01

print(math.ceil(x)) #6

x=5.9

print(maht.ceil(x)) #6

 

2、当x为负数时,舍去小数部分

x=-5.9

print(math.ceil(x)) #-5

x=-5.01

print(math.ceil(x)) #-5

 

二、math.floor(x)

1、当x为正数时,舍去小数部分

x=5.9

print(math.floor(x)) #5

x=5.01

print(math.floor(x)) #5

2、当x为负数时,只要小数部分>0,就+-1

x=-5.9

print(math.floor(x)) #-5-1=-6

x=-5.01

print(math.floor(x)) #-5-1=-6

 

http://www.cnblogs.com/liujinxin/p/6121495.html 

python中的math.ceil(x)和math.floor(x)