🗒 Cheat Sheet← Lesson
BitWithBite
Python Worksheet

🐍 Lists

Chapter: Python · Level ★☆☆ · Time: 30 min
SCORE___ / 20
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

1nums = [1,2,3]; nums[1] is:
2Add to the end of a list with:
3len([1,2,3]) is:
4nums[-1] returns:

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

5[10,20,30][0] = .
6Add x with lst.(x).
7Create a list of three fruits.
8What is [1,2,3] + [4]?
9Sum [2,4,6] with a builtin.

🚀 Section C · Challenge ● CHALLENGE 5

10What does [1,2,3].pop() return and leave?
💭 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]

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