[Python 개념] math

timtam·2022년 5월 15일
0

Python_개념

목록 보기
32/32

math.ceil은 올림
round는 반올림
math.floor은 버림

>>> import math
>>> math.ceil(3.14) #4
>>> math.floor(3.78)  #3
>>> round(3.78) # 4

0개의 댓글