1. 程式人生 > >Python向上取整,向下取整以及四舍五入函數

Python向上取整,向下取整以及四舍五入函數

bsp 返回結果 class clas 都是 div spa pre style

import math

f = 11.2
print math.ceil(f) #向上取整
print math.floor(f) #向下取整
print round(f) #四舍五入

#這三個函數的返回結果都是浮點型

Python向上取整,向下取整以及四舍五入函數