Skip to content

Instantly share code, notes, and snippets.

@rnaeye
Created September 24, 2016 23:45
Show Gist options
  • Save rnaeye/a282394b49894f285822f8581854e93f to your computer and use it in GitHub Desktop.
Save rnaeye/a282394b49894f285822f8581854e93f to your computer and use it in GitHub Desktop.
exercises
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