String Basics
Let's explore strings in more depth, building on what you learned earlier.
String Creation Review
Loading Python Playground...
Raw Strings
Loading Python Playground...
String Immutability
Loading Python Playground...
Exercises
Loading Python Exercise...
String Operations
Loading Python Playground...
Indexing and Slicing
Loading Python Playground...
Loading Python Exercise...
Loading Python Exercise...
String Comparison
Loading Python Playground...
Iterating Over Strings
Loading Python Playground...
Loading Python Exercise...
Practice Playground
Loading Python Playground...
Key Takeaways
- Strings are immutable sequences
- Raw strings
r''treat backslashes literally - Slice with
[start:end:step] [::-1]reverses a string- Strings are iterable (for char in string)
- Case matters for comparison

