파이썬[Python]: math - ceil 함수
math 모듈 - ceil 함수(function)
/// 설명
x(정수) 와 같거나 x(실수) 보다 큰 정수들 중 가장 작은 정수를 반환합니다.(소수점 올림)
※ 형식
math.ceil(x)
reference
https://docs.python.org/3/library/math.html#module-math
※ 형식
math.ceil(x)
reference
https://docs.python.org/3/library/math.html#module-math
/// 예제
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import math print(math.ceil(1)) # 1 print(math.ceil(1.1)) # 2 print(math.ceil(1.2)) # 2 print(math.ceil(1.3)) # 2 print(math.ceil(1.4)) # 2 print(math.ceil(1.5)) # 2 print(math.ceil(1.6)) # 2 print(math.ceil(1.7)) # 2 print(math.ceil(1.8)) # 2 print(math.ceil(1.9)) # 2 print(math.ceil(2)) # 2 print('-->|-------->|-------->|-------->|---') print('...1.........2.........3.........4...') | cs |
* 실행환경: Microsoft Windows 10 Homes
* 인터프리터: 파이썬(Python 3.9)
– 당신을 응원합니다. –
댓글
댓글 쓰기