A list is stored in memory as integer.
1 Like
False
Reason — A list is not stored in memory as a single integer. Instead, it is stored as a collection of references to the elements it contains.
Answered By
A list can contain heterogeneous values.
We can create an empty list by using list() function.
The command [1,2,3,4,]<[9,1] will give the output as True.
List[a:b] will give the elements between a and b.