Skip to content

Instantly share code, notes, and snippets.

@vlazzle
Created October 19, 2017 04:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlazzle/bc30badb5d05fd5e0ce31d72e93901a2 to your computer and use it in GitHub Desktop.
Save vlazzle/bc30badb5d05fd5e0ce31d72e93901a2 to your computer and use it in GitHub Desktop.
def factorial(n):
i = 1
factorial = 1
while i <= n:
factorial = factorial * i
i = i + 1
return factorial
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment