码迷,mamicode.com
首页 > 编程语言 > 详细

python 向下取整,向上取整,四舍五入

时间:2018-07-19 13:31:44      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:floor   int   技术分享   .com   span   col   info   图片   向上取整   

# python 向下取整 floor 向上取整ceil 四舍五入 round
import math
num=3.1415926
# 向上取整
print(math.ceil(num))
# 向下取整
print(math.floor(num))
# 保留2为小数
print(round(num,2))
# 保留3位小数
print(round(num,3))

 

返回:

技术分享图片

 

python 向下取整,向上取整,四舍五入

标签:floor   int   技术分享   .com   span   col   info   图片   向上取整   

原文地址:https://www.cnblogs.com/xmnote/p/9334979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!