457,240 views
43 votes
43 votes
In Python, what is the major difference between lists and dictionaries? (5 points) Dictionaries cannot be changed after creation, while lists can be changed. Dictionaries require keys, while lists do not. Lists cannot be changed after creation, while dictionaries can be changed. O Lists require keys, while dictionaries do not.​

User Lboshuizen
by
3.0k points

1 Answer

16 votes
16 votes

Answer:

Dictionaries require keys, while lists do not.

Step-by-step explanation:

A list is an ordered sequence of objects, whereas dictionaries are unordered sets. However, the main difference is that items in dictionaries are accessed via keys and not via their position.

User KarlsFriend
by
2.4k points