Created
November 27, 2017 00:15
-
-
Save Jackustc/9d82c92e3cf6f84fb582b8505a112e7e 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
| import time | |
| name = input('Please intput your name:') | |
| age = input('Please input your age:') | |
| #get current year | |
| Current_year =time.strftime('%Y', time.localtime(time.time())) | |
| year = str(int(Current_year)-int(age) + 100) | |
| print(name + ': in ' + year + ', you will be 100 age') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment