python取整符号_Python中的取整函数
import math# 向上取整print("math.ceil---")print("math.ceil(2.3) => ", math.ceil(2.3))print("math.ceil(2.6) => ", math.ceil(2.6))# 向下取整print("\nmath.floor---")print("math.floor(2.3) => ", math.flo