There is no conceptual limit to the size of a list.
2 Likes
True
Reason — The list can be of any size.
Answered By
1 Like
Do both the following represent the same list.['a', 'b', 'c']['c', 'a', 'b']
A list may contain any type of objects except another list.
All elements in a list must be of the same type.
A given object may appear in a list more than once.