Skip to content

Instantly share code, notes, and snippets.

@saravanareddy
Created February 24, 2012 00:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saravanareddy/1896353 to your computer and use it in GitHub Desktop.
Save saravanareddy/1896353 to your computer and use it in GitHub Desktop.
Python one liner
from random import random
print "Pi:", sum(1 for i in range(2000000) if (random()**2 + random()**2) < 1)/2000000.0 * 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment