Python怎么保留小数,python里保留小数
1,int()向下舍入(内置函数)
热门IT软件开发工作室,大量免费python视频教程,欢迎在线学习!
n=3.75
print(int(n))
三
n=3.25
print(int(n))
3相关推荐:《Python基础教程》
2、round()舍入(内置函数)
n=3.75
打印(四舍五入)
四
n=3.25
打印(四舍五入)
33.floor()向下舍入(数学模块函数)
地板的英文定义:floor。顾名思义,就是向下取整。
导入数学
n=3.75
print(math.floor(n))
三
n=3.25
print(math.floor(n))
34.ceil()向上舍入(数学模块函数)
Ceil英文:ceiling。
导入数学
n=3.75
print(math.ceil(n))
四
n=3.25
print(math.ceil(n))
四
郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。