Home / Python / Day 3: Data Structures / Tuples

Tuples

Tuples are ordered, immutable sequences — faster and safer than lists for fixed data.

Python Tuples

Tuples are like lists but immutable — you cannot change them after creation. Use tuples for data that should not change.