Python模組---向上向下取整、四捨五入取整

weixin_33762321發表於2019-02-11

向上向下取整、四捨五入取整

import math

# 向上取整
math.ceil(2.3)
3
math.ceil(2.6)
3

# 向下取整
math.floor(2.3)
2
math.floor(2.6)
2

# 四捨五入
round(2.3)
2
round(2.6)
3

# 返回值都是整型
a = math.ceil(2.3)
type(a)
# <class 'int'>

b = math.floor(2.3)
type(b)
# <class 'int'>

相關文章