Lesson 6 of 12
Working with Strings 🔠
What You'll Learn
- Concatenate strings with + and use f-strings
- Use common string methods: upper, lower, len, replace
- Access individual characters with indexing
Quick Check
1. How do you insert a variable into an f-string?
2. What does .upper() do to a string?
3. What does len('Hello') return?
4. Which correctly builds an f-string with a variable called city?