- A tuple is a sequence of immutable Python objects that are indexed and accessed using square brackets. Tuples are similar to lists but are immutable meaning the elements cannot be changed once created.
- Tuples can be created using parentheses or the tuple() function. Elements within a tuple can be accessed using indexes and slices and tuples support common operators like + for concatenation and * for repetition. Built-in functions like len(), sum(), and sorted() can also be used with tuples.