Skip to content

Instantly share code, notes, and snippets.

@bee-san
Created March 29, 2019 23:00
Show Gist options
  • Save bee-san/9f4bee22789d18fe16769fa30ce9d938 to your computer and use it in GitHub Desktop.
Save bee-san/9f4bee22789d18fe16769fa30ce9d938 to your computer and use it in GitHub Desktop.
n = 6
def recur_factorial(n):
if n == 1:
return n
else:
return n * recur_factorial(n-1)
print(recur_factorial(n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment