This document provides an overview of string fundamentals in Python including:
- Strings can be indexed and sliced to access individual characters or substrings
- Built-in functions like len() return the length of a string
- Strings are immutable so cannot be modified, but new strings can be created
- Common string methods like upper(), lower(), find(), strip() can manipulate strings
Related topics: