파이썬 ceil()

1 개요[ | ]

Python ceil()
파이썬 ceil()
import math
print( math.ceil(4.3) )
print( math.ceil(9.9) )
print( math.ceil(-3.14) )
print( math.ceil(-2.72) )
import math
print(math.ceil(1.4))
print(math.ceil(5.3))
print(math.ceil(-5.3))
print(math.ceil(22.6))

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}