

InterviewSolution
Saved Bookmarks
1. |
What is। Tuple , dictionary, list |
Answer» List and Tuple objects are sequences. A dictionary is a hash table of key-value pairs. List and tuple is an ordered collection of items.List and dictionary objects are mutable i.e. it is possible to add new item or delete and item from it. Tuple is an immutable object. | |