Created
September 24, 2016 23:45
-
-
Save rnaeye/a282394b49894f285822f8581854e93f to your computer and use it in GitHub Desktop.
exercises
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
name = input ("Give me your name: ") | |
print ("Your name is " + name) | |
age = int(input("Enter your age: ")) | |
print("Your age is " + str(age)) | |
age_at_hundred = (100 - age) + 2016 | |
print ("You will be 100 yeras old in " + str(age_at_hundred)) | |
# print(dir()) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment