Conditionals in python

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