您现在的位置是:课程教程文章

python中如何取整

2023-12-18 21:46课程教程文章 人已围观

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

向下取整: int()

>>> a = 14.38
>>> int(a)
14

向上取整:ceil()

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

>>> import math
>>> math.ceil(3.33)
4
>>> math.ceil(3.88)
4

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

四舍五入: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中如何取整

上一篇:cmd中怎么退出python程序

下一篇:没有了

站点信息

  • 文章统计篇文章