An else in Python is written as follows:

if first_condition:
    first_body
else:
    second_body

An else can also be placed after an else-if:

if first_condition:
    first_body
elif second_condition:
    second_body
else:
    third_body

Fill in the placeholders so that the actual outputs match the expected outputs.