Skip to content

Instantly share code, notes, and snippets.

@iswarup
Last active June 9, 2018 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iswarup/ac8d8767754cc099fd8c6a919cc882e3 to your computer and use it in GitHub Desktop.
Save iswarup/ac8d8767754cc099fd8c6a919cc882e3 to your computer and use it in GitHub Desktop.
datetime
name=input("Enter your name:")
age=int(input("Enter your age:"))
import datetime
now= datetime.datetime.now()
age100= now.year + (100-age)
print("Hello "+name+". "+"You will turn 100 in",age100,".")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment