import math
# 올림 함수
math.ceil(1.0) # 1
math.ceil(1.1) # 2

import math
# 내림 함수
math.floor(1.1) # 1
math.floor(1.5) # 1

 

+ Recent posts