🗒 Cheat Sheet← Lesson
BitWithBite
Python Worksheet

🐍 Conditionals

Chapter: Python · Level ★☆☆ · Time: 30 min
SCORE___ / 20
NameClassDate
After this worksheet you can
Write if / elif / elseChain comparisonsNest conditionsTrace branching logic

🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4

1Which keyword handles 'otherwise'?
2if x == 5: uses which operator?
3elif means:
4If x = 3: if x > 5: print('A') else: print('B') prints:

🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11

5The keyword for else-if is .
6Equality is tested with .
7Write an if that prints 'even' when n % 2 == 0.
8What prints for score=75: if score>=80:'A' elif score>=70:'B' else:'C'?
9Fix: if x = 5:

🚀 Section C · Challenge ● CHALLENGE 5

10When do both if and else blocks run?
💭 Reflection — the most useful thing I learned:
A ___/4   B ___/11   C ___/5   Total ___/20 Teacher's Signature Parent's Signature
✂ answer key — fold or cut before handing out

1-A   2-B   3-B   4-B  |  5 elif   6 ==   7 = if n % 2 == 0: print('even')   8 = B   9 = if x == 5:  |  10 = Never - exactly one branch runs

📄 Need offline practice?Download the print-ready PDF or open the one-page cheat sheet.
⬇ Worksheet PDF 🗒 Cheat Sheet