摘要: 1、math的一些常用函数 print(round(2.5)) #round()是四舍六入,五取偶;不是math下面的函数 print(round(1.2)) import math print(math.floor(2.5)) #向下取整 print(math.ceil(2.5)) #向上取整 p 阅读全文
posted @ 2019-12-10 15:53 二十四长夜明 阅读(274) 评论(0) 推荐(0) 编辑