python中的math.ceil(x)和math.floor(x)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)的主要内容,如果未能解决你的问题,请参考以下文章
js 中的 Math.ceil() Math.floor Math.round()