Created
March 15, 2011 09:36
-
-
Save joar/870500 to your computer and use it in GitHub Desktop.
Hundreds of millions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
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