BillBie

导航

python 数字取整计算

var code = "3f65cba6-fe94-41e4-b0de-1138a3e12355"

import math

#向上取整

math.ceil(2.3)
 

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

x//y  # 底板除
 

#四舍五入
round(2.3))
round(2.6))

posted on 2023-02-10 18:21  BillBie  阅读(14)  评论(0编辑  收藏  举报