🗒 Cheat Sheet← Lesson
BitWithBite
Python Worksheet

🐍 Strings

Chapter: Python · Level ★☆☆ · Time: 30 min
SCORE___ / 20
NameClassDate
After this worksheet you can
Index and slice stringsUse common string methodsConcatenate and f-stringsFind string length

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

1'python'[0] is:
2len('code') is:
3'ab' + 'cd' gives:
4'HELLO'.lower() gives:

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

5'python'[1] is .
6'hi'.upper() gives .
7Slice 'python' to get 'pyt'.
8What does 'a,b,c'.split(',') return?
9Replace 'cat' with 'dog' in s = 'my cat'.

🚀 Section C · Challenge ● CHALLENGE 5

10What does ' hi '.strip() return?
💭 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-A   4-B  |  5 y   6 HI   7 = 'python'[0:3]   8 = ['a', 'b', 'c']   9 = s.replace('cat','dog')  |  10 = 'hi'

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