반응형
In [1]:
from math import ceil
num = 1.2
ceil(num)
Out[1]:
2
- 버림 ( math 패키지에
trunc
함수 사용 )
In [2]:
from math import trunc
num = -3.4
trunc(num)
Out[2]:
-3
- 내림 ( math 패키지에
floor
함수 사용 )
In [3]:
from math import floor
num = -3.4
floor(num)
Out[3]:
-4
반응형
'python' 카테고리의 다른 글
파이썬 정적 함수 vs 동적함수 (0) | 2023.05.07 |
---|---|
@staticmethod 데코레이터, 객체선언 없이 클래스 메서드 사용하기 (0) | 2023.05.07 |
python tkinder 단순 계산기 gui 환경 구성 (0) | 2023.05.05 |
파이썬 타입확인 isinstance (0) | 2023.05.04 |
opencv를 활용한 rgb 색상 추출 (0) | 2023.05.04 |
댓글