Python Collection Comparison

Selecting the right built in Collection to store your data can make the difference between a simple program and complex one. For example, if you only want to know the unique values, then choose something that does not allow duplicates and let it do the work for you.

See also Python split string to list.

Python using Laptop
CollectionOrderedChangeableAllow Duplicates
ListYesYesYes
TupleYesNoYes
SetNoNoNo
DictionaryYesYesNo