Prev | Index | NextLists and Tuples
- Ordered sequence of values, each separated by a comma
- Elements can be of different types
- Elements are accessed by their index, starting from zero
- Multiple elements can be specified with a slice
- A list is mutable; you can change its individual elements
- Tuples are immutable
An Introduction To Python