Skip to content

Instantly share code, notes, and snippets.

@inconvergent
Created September 8, 2014 18:45
Show Gist options
  • Save inconvergent/96d91fd15499835becc6 to your computer and use it in GitHub Desktop.
Save inconvergent/96d91fd15499835becc6 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
from random import random
n = 1
w = 0.
while True:
s = random()*60.
w += 60.-s
print w/float(n)
n += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment