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)

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python中如何取整