Created
July 26, 2020 06:31
-
-
Save janaki-sasidhar/539e9200943330fc83be856fe580ae87 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
name=input("Enter the name ") | |
age = int(input("Enter your age ")) | |
print("Your name is {} ".format(name)) | |
print(f"Your age is {age} , you will turn to 100 years old in {2120-age}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment