Created
April 18, 2018 21:39
-
-
Save mightywombat/276faa9a796109fc7f83d6c8882b6976 to your computer and use it in GitHub Desktop.
practicepython.org Ex 01
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
# practicepython.org Ex 01 | |
name = raw_input( "Please enter your name: " ) | |
age = int(raw_input ( "Please enter your age: " )) | |
age = str( 100 - age ) | |
print ( "Hi, " + name + "! You will turn 100 years old in " + age + " years!" ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Input didn't work for some reason. I kept getting "$whateveranswer is not defined." Raw_input fixed that.