Chapter 1: Strings
A string is a sequence of characters enclosed in quotes.
Strings are immutable.
Topics: creation, indexing, slicing, methods, traversal.
Important programs: palindrome, vowel count.
Chapter 2: Lists
List is a mutable, ordered collection.
Topics: creation, indexing, slicing, methods, traversal.
Important programs: sum of elements, even-odd count.
Chapter 3: Tuples
Tuple is an immutable collection.
Topics: creation, indexing, slicing, tuple methods.
Important programs: max/min in tuple.
Chapter 4: Dictionary
Dictionary stores data in key-value pairs.
Topics: creation, accessing values, methods.
Important programs: word frequency.