Python向上取整和向下取整

# 向上取整、向下取整
import math

a = 2.1
print(int(a))  # 向下取整,输出2
print(math.ceil(a))  # 向上取整,输出3

你可能感兴趣的:(大数据,python)