def factorial(n):
if n <= 1:
return 1
else:
return n * (factorial(n - 1))
print(factorial(21))
For further actions, you may consider blocking this person and/or reporting abuse
def factorial(n):
if n <= 1:
return 1
else:
return n * (factorial(n - 1))
print(factorial(21))
For further actions, you may consider blocking this person and/or reporting abuse
Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.
Wesley Chun (@wescpy) -
Vishnu Sivan -
Super Kai (Kazuya Ito) -
Piyush Chauhan -
Top comments (0)