Conditionals in Python

if <condition>:
    Code
elif <condition>:
    Code
else:
    Code
UPDATED