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

python如何不保留小数

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

1、int() 向下取整(内置函数) 

python学习网,大量的免费python视频教程,欢迎在线学习!

n = 3.75
print(int(n))
>>> 3
n = 3.25
print(int(n))
>>> 3

相关推荐:《Python基础教程》

2、round() 四舍五入(内置函数) 

n = 3.75
print(round(n))
>>> 4
n = 3.25
print(round(n))
>>> 3

3、floor() 向下取整(math模块函数) 

floor的英文释义:地板。顾名思义也是向下取整

import math
n = 3.75
print(math.floor(n))
>>> 3
n = 3.25
print(math.floor(n))
>>> 3

4、ceil()向上取整 (math模块函数)

ceil的英文释义:天花板。

import math
n = 3.75
print(math.ceil(n))
>>> 4
n = 3.25
print(math.ceil(n))
>>> 4
课程教程:python如何不保留小数

上一篇:python中如何安装pip工具

下一篇:没有了

站点信息

  • 文章统计篇文章