InterviewSolution
| 1. |
What Is The Difference Between A Tuple And A List? |
|
Answer» A tuple is a list that is immutable. A list is mutable i.e. The members can be CHANGED and ALTERED but a tuple is immutable i.e. the members cannot be changed. A tuple is a list that is immutable. A list is mutable i.e. The members can be changed and altered but a tuple is immutable i.e. the members cannot be changed. |
|