ControlC
· Pastebin
Login
Register
ControlC
/
My Code
My Code
Pasted:
Sep 24, 2021, 8:50:25 am
·
Views:
992
Copy
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)
print(factorial(5))
Create new version