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
# Setting up conditional statement | |
print("Enter Your age") | |
myAge = raw_input() | |
if myAge >= 10: # The state of an if / else statement | |
print( "You're not a kid anymore." ) | |
elif myAge <= 19: # Use elif for additional conditions... kinda like elseif | |
print( "You must be a teen!" ) | |