摘要: 1、向上取整 import math >>> math.ceil(4.12) 5 2、向下取整 import math >>> math.floor(4.12) 4 3、四舍五入 >>> round(2.3) 2 >>> round(2.6) 3 math模块其他用法:https://www.cnb 阅读全文
posted @ 2020-08-20 11:16 mkay 阅读(973) 评论(0) 推荐(0) 编辑