A list may contain any type of objects except another list.
2 Likes
False
Reason — A list can store any data types and even list can contain another list as element.
Answered By
1 Like
Do both the following represent the same list.['a', 'b', 'c']['c', 'a', 'b']
There is no conceptual limit to the size of a list.
All elements in a list must be of the same type.