When do you use list vs. tuple vs. dictionary vs. set?
Answers
Answered by
0
list is like array, it can be used to store homogeneous as well as heterogeneous data type (It can store same data type as well as different data type). List are faster compared to array. Individual element of List data can be accessed using indexing & can be manipulated.
Similar questions