The main difference between tuples and lists is that the former have heterogeneous types, while the latter have only one inner type.
For example, we can have a list of integers and a tuple of (real, boolean), but not the opposite.
A consequence of this is that tuples have a finite arity/length that is known at compile time, while lists can grow arbitrarily. This is because infinite different types can't possibly be expressed.
The main difference between tuples and lists is that the former have heterogeneous types, while the latter have only one inner type.
For example, we can have a list of integers and a tuple of (real, boolean), but not the opposite.
A consequence of this is that tuples have a finite arity/length that is known at compile time, while lists can grow arbitrarily. This is because infinite different types can't possibly be expressed.