Green Hat – Logic & Loops
beginner20 XP

Conditionals

Use if, elif, and else to make your programs smart

Conditionals

Python
score = 75
if score >= 90:
    print("Amazing! Grade A!")
elif score >= 70:
    print("Good job! Grade B!")
else:
    print("Keep trying!")

Logical Operators

Python
if age >= 12 and has_permission:
    print("You can enter!")
⌨️

Type it yourself

Don't just read it — type the example from above into the box, press Run ▶, and watch what happens. Typing it yourself is how it really sticks! Stuck? Tap Show example.

Python · Playground
Output
Press ▶ Run to see your code come to life…

Quick check

01/2

Which operator checks if two values are EQUAL?