Python's explanation of heterogeneous data,homogeneous items

look at the documents on the official website and see that the following two sentences are incomprehensible. Please give me
List
Lists are mutable sequences, typically used to store collections of homogeneous items (where the precise degree of similarity will vary by application).

.

Tuples
Tuples are immutable sequences, typically used to store collections of heterogeneous data (such as the 2-tuples produced by the enumerate () built-in)
what kind of data does heterogeneous data refer to here? what kind of elements does, homogeneous items refer to? can it be understood as data of different components and the same type of data? it feels like List can also put different kinds of data.
finally, thanks for browsing and answering

.
Mar.21,2021

just shows that English is broad and profound and has a rich vocabulary. Both List and Tuple can hold different types of data

.
Menu