Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
factoriel function recursive
#python 3.5.2 def fact(num): if (num>0): return num*fact(num-1) else: return 1 print (fact(11))
run
|
edit
|
history
|
help
0
Saurabh
PythonClosure2
Doki Doki Study Club p.one
miyabhai
Remove all Adjacent duplicates using a loop
Ej2_python_204676887
Happy new year!
HW Descending order
An attempt at making an encrypting algo in Python.
Guessing game