NameClassDate
After this worksheet you can
Index and slice stringsUse common string methodsConcatenate and f-stringsFind string length
📚 Quick Recap
🎯 What you'll learn: How to create strings in Python, string indexing and slicing, 15+ essential string methods, powerful f-string formatting, escape characters, and common string operations like concatenation, repetition, and membership testing.
🧠 Section A · Concept Check ● BEGINNER 4 × 1 = 4
🧮 Section B · Problem Solving ● INTERMEDIATE 2 + 3×3 = 11
5'python'[1] is .
6'hi'.upper() gives .
🚀 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-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'