Skip to content

Instantly share code, notes, and snippets.

@sagnibak
Created August 17, 2020 01:08
Show Gist options
  • Save sagnibak/934fc6ec181ea60907eecdc1aae0e2f7 to your computer and use it in GitHub Desktop.
Save sagnibak/934fc6ec181ea60907eecdc1aae0e2f7 to your computer and use it in GitHub Desktop.
def fac(n):
acc = 1
while n > 1:
acc *= n
n -= 1
return acc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment