So, how do dictionaries compare to lists?

Dictionaries use a single method to add and update valuesLists have an order while dictionaries are unorderedLists can change while dictionaries can'tList values can be of any type while key-value pairs can't

Great! Dictionaries are unordered and use the update() method to add and update values. Lists are ordered and have separate methods.

Almost! Dictionaries are unordered and use the update() method to add and update values. Lists are ordered and have separate methods.