python中如何取整

python

python中对数字进行取整的具体方法如下

向下取整: int()

>>> a = 14.38

>>> int(a)

14

向上取整:ceil()

使用ceil()方法时需要导入math模块,例如

>>> import math

>>> math.ceil(3.33)

4

>>> math.ceil(3.88)

4

(网,免费的网站,欢迎在线学习!)

四舍五入:round()

>>> 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)

以上是 python中如何取整 的全部内容, 来源链接: utcz.com/z/524815.html

回到顶部