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
Sunil Kumar Dash -
Info general Hazedawn -
Shreshth Goyal -
Vikas76 -
Top comments (0)