Skip to content

Instantly share code, notes, and snippets.

@float-tw
Last active January 2, 2016 07:28
Show Gist options
  • Save float-tw/8269850 to your computer and use it in GitHub Desktop.
Save float-tw/8269850 to your computer and use it in GitHub Desktop.
x = 1
for i in range(1, 101):
x = x * i
print x
# OUT: 93326215443944152681699238856266700490715968264381621468592963895217599993229915608941463976156518286253697920827223758251185210916864000000000000000000000000
#or
import math
math.factorial(100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment