When we start learning Python, lists are often one of the first data structures we use: student = [ " Laura " , 24 , " Medellín " ] This works, but what does each position represent? We need to remember that: Position 0 contains the name. Position 1 contains the age.

Source: [Dev.to](https://dev.to/tu_codigocotidiano_f173d/python-dictionaries-and-sets-organize-named-data-and-remove-duplicates-4kc4)

Sponsored