파이썬[Python]: fractions - __ceil__ 메서드
fractions 모듈 - __ceil__ 메서드(method) /// 설명 Fractions 가 반환하는 값보다 큰 정수들 중 가장 작은 정수를 반환합니다.(소수점 올림) ※ 형식 fractions.Fraction()__ceil__() reference https://docs.python.org/3/library/fractions.html#module-fractions /// 예제 1 2 3 4 5 6 7 8 9 10 11 import fractions import math test = fractions.Fraction( 355 , 113 ) print (test.__ceil__()) # 4 print (math.ceil(test)) # 4 # -->|-------->|-------->|-------->|--- # ...1.........2.........3.........4... Colored by Color Scripter cs * 실행환경: Microsoft Windows 10 Homes * 인터프리터: 파이썬(Python 3.9) – 당신을 응원합니다. –