Skip to content

Instantly share code, notes, and snippets.

@joar
Created March 15, 2011 09:36
Show Gist options
  • Save joar/870500 to your computer and use it in GitHub Desktop.
Save joar/870500 to your computer and use it in GitHub Desktop.
Hundreds of millions
'''
Hundreds of millions
http://www.facebook.com/venturebeat/posts/10150115163154079
'''
''' The lowest amount considerable "hundreds of millions" '''
HofM = 200000000
''' The number of view of the official Halo Reach: Noble Map Pack trailer by Bungie '''
Ps = 572753
''' The average amount of time per player, if playing 8 hours a day '''
print( ( HofM / Ps ) / 8 )
''' Returns 43.64883291750545 (days) '''
''' The average amount of time per player, if playing 24 hours a day '''
print( ( HofM / Ps ) / 24 )
''' Returns 14.5496109725 (days) '''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment