In python documentation list is defined as:
mutable sequences, typically used to store collections of homogeneous items (where the precise degree of similarity will vary by application).
Why it's used to store collections of homogeneous items?
Are a string and an int item also homogeneous then?
a = [12,"hello"]