Skip to content

Instantly share code, notes, and snippets.

@akshayxarora
Last active March 28, 2017 19:52
Show Gist options
  • Save akshayxarora/a4f977c1b1e37c557cdfd4e987f6815e to your computer and use it in GitHub Desktop.
Save akshayxarora/a4f977c1b1e37c557cdfd4e987f6815e to your computer and use it in GitHub Desktop.
Character Input 01
name = raw_input("Enter your name : ")
age = int(raw_input("Enter age : "))
new_age = 2017 + 100 - age
print "%s will turn 100 years old in %r year " % (name, new_age)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment