时间:2022-08-25 10:22:08 | 栏目:Python代码 | 点击:次
>>> a = 14.38 >>> int(a) 14
使用ceil()
方法时需要导入math
模块,例如
>>> import math >>> math.ceil(3.33) 4 >>> math.ceil(3.88) 4
>>> round(4.4) 4 >>> round(4.6) 5
将整数部分和小数部分分别取出,可以使用math
模块中的 modf()
方法
例如:
>>> math.modf(4.25) (0.25, 4.0) >>> math.modf(4.33) (0.33000000000000007, 4.0)
最后一个应该是0.33
,但是浮点数在计算机中是无法精确的表示小数的,python
采用IEEE 754
规范来存储浮点数。