Python - 6

Python - 6: If Statements

if statements let your programs make decisions.

✦ Python Editor
▶ Output

👀 Show Example Solution
temperature = 75

if temperature > 70:
    print("It is warm outside")

favorite_game = "Minecraft"

if favorite_game == "Minecraft":
    print("Great choice!")