🗒 Cheat Sheet← Lesson
BitWithBite
Python Worksheet

🐍 Loops

Chapter: Python · Level ★☆☆ · Time: 30 min
SCORE___ / 20
NameClassDate
After this worksheet you can
Use for with range()Use while loopsbreak and continueTrace loop output

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

1range(3) yields:
2Which exits a loop early?
3continue does what?
4while True: with no break is:

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

5range(2, 5) yields 2, 3, .
6for x in 'ab': loops times.
7Print numbers 1 to 5 with a for loop.
8How many times does for i in range(10) run?
9What does this print? for i in range(3): print(i*2)

🚀 Section C · Challenge ● CHALLENGE 5

10Write a while loop counting down 3,2,1.
💭 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-B   2-C   3-B   4-B  |  5 4   6 2   7 = for i in range(1, 6): print(i)   8 = 10   9 = 0 2 4  |  10 = n=3; while n>0: print(n); n-=1

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