Last active
September 22, 2017 20:38
-
-
Save mrdoornbos/409aa76435911908ffebed3ab929ce31 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
age = 18.00 * 365.25 | |
if age > 10000: | |
print("Wow you made it to 10,000. You are at %s" % age) | |
else: | |
age = 10000 - age | |
print("You only have this many days to go: %s" % age) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment