导语:
本文主要介绍了关于python如何不保留小数的相关知识,包括python定义一个列表,以及python结果不保留小数点这些编程知识,希望对大家有参考作用。
1、int() 向下取整(内置函数)
python学习网,大量的免费
,欢迎在线学习!
n = 3.75
print(int(n))
>>> 3
n = 3.25
print(int(n))
>>> 3
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如何加载文件路径01/02
- ♥ python集合可以做什么10/27
- ♥ python类的两个属性11/07
- ♥ Python中有多少种参数类型?11/12
- ♥ python raise语句的两种用法10/03
- ♥ 2道Python题10种解法03/12
内容反馈