-
round(number[, ndigits]) 함수는 반올림해 주는 함수다.
>>> round(1.22) 1 >>> round(4.55555555) 5 >>> round(4.55555555, 2) 4.56 >>>
'Python' 카테고리의 다른 글
Python - tuple() 클래스 함수 (0) 2020.09.06 Python - dict() 클래스 함수 (0) 2020.09.06 Python - reduce 함수 (0) 2020.09.06 Python - sorted 함수 (0) 2020.09.05 Python - range 함수 (0) 2020.09.05 Python - min(), max() 함수 (0) 2020.09.05 Python - map 클래스 함수 (0) 2020.09.05 Python - list() 클래스 함수 (0) 2020.09.05