Created
March 3, 2015 04:06
-
-
Save codenamejason/7d557154438d793ee3c1 to your computer and use it in GitHub Desktop.
Age In Days
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 = input | |
days_in_year = 365.25 | |
days_alive = age * days_in_year | |
print days_alive | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment