파이썬 floor()

1 개요[ | ]

Python floor()
파이썬 floor()
  • 버림 함수
Python
CPU
0.0s
MEM
8M
0.1s
Copy
import math
print( math.floor(3.14) )
print( math.floor(2.72) )
print( math.floor(-3.14) )
print( math.floor(-2.72) )
3
2
-4
-3
Python
Copy
import math
print(math.floor(1.4))
print(math.floor(5.3))
print(math.floor(-5.3))
print(math.floor(22.6))
Loading

2 같이 보기[ | ]

3 참고[ | ]