NameClassDate
After this worksheet you can
Create and index listsappend/remove itemsSlice listsLoop over lists
📚 Quick Recap
🎯 What you'll learn: How to store ordered collections of data with Python lists — creation, indexing, slicing, all essential methods, sorting, list comprehensions, and nested lists. Then the sister type tuple — what makes it different, when to use it, and how packing/unpacking works.
🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4
🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11
5[10,20,30][0] = .
6Add x with lst.(x).
🚀 Section C · Challenge ● CHALLENGE 5
💭 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 10 6 append 7 = fruits = ['apple','banana','mango'] 8 = [1, 2, 3, 4] 9 = sum([2,4,6]) = 12 | 10 = Returns 3, leaving [1, 2]