

InterviewSolution
Saved Bookmarks
1. |
How can you say that a tuple is an ordered list of object ? |
Answer» ➡️A tuple contain a group of elements which can be of different types. ➡️The elements in tuple are separated by commas, nd inclosed in parenthesis () ➡️tuple elements can\'t modified that means the value stored in a tuple can\'t be changed. ➡️that also means that a tuple can\'t be treated as a Read only list data type. therefore we can say that tuple is the oder list of object. | |