Skip to content

Instantly share code, notes, and snippets.

@mrdoornbos
Last active September 22, 2017 20:38
Show Gist options
  • Save mrdoornbos/409aa76435911908ffebed3ab929ce31 to your computer and use it in GitHub Desktop.
Save mrdoornbos/409aa76435911908ffebed3ab929ce31 to your computer and use it in GitHub Desktop.
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