1.取比当前值小的最小值
import math
from math import floora = 1.58
b = -34.77print floor(a) #a 输出为1
print floor(b) #b 输出为-352. 四舍五入
print round(1.58) # 输出为2 print round(-34.77) # 输出为35
本文共 234 字,大约阅读时间需要 1 分钟。
1.取比当前值小的最小值
import math
from math import floora = 1.58
b = -34.77print floor(a) #a 输出为1
print floor(b) #b 输出为-352. 四舍五入
print round(1.58) # 输出为2 print round(-34.77) # 输出为35
转载于:https://www.cnblogs.com/artesian0526/p/9262091.html