Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Making of floor() and ceil() functions
def floor(a): A = int(a) return A def ceil(a): A = int(a)+1 return A A = 4.567 print(floor(A)) print(ceil(A))
run
|
edit
|
history
|
help
0
RANDOM NUMBER
134
EJ2_PYTHON_20.321.212-7
Convert to lowercase
two-digits-puzzle
Partition To 2 Equal Sum Subsets From An Array of Integers
31 dec
mean
PyRegBackRef
LinkedList implementation