Skip to content

Instantly share code, notes, and snippets.

# 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!" )