Python - 11

Python - 11: Else & Elif Statements

Programs can make more advanced decisions using else and elif.

✦ Python Editor
▶ Output

👀 Show Example Solution
age = 16

if age >= 18:
    print("You can vote.")

elif age >= 13:
    print("You are a teenager.")

else:
    print("You are a child.")

game = "Minecraft"

if game == "Roblox":
    print("Roblox player detected!")

elif game == "Minecraft":
    print("Minecraft is awesome!")

else:
    print("Nice choice!")