Back to search

List vs tuple in Python

Lists are mutable dynamic arrays; tuples are immutable ordered records.

Python Easy Theory

List vs tuple in Python

Lists are mutable dynamic arrays; tuples are immutable ordered records.

  • List can change
  • Tuple is hashable if items are hashable
  • Tuple signals fixed shape

List vs tuple in Python