discuss the utility and significance of tuples
Answers
Answered by
3
Answer:
tuples are immutable and it's better to use a tuple than lists, when elements to be stored are fixed.
Answered by
12
Answer:
Tuples are immutable sequence of python.Tuples are useful when the element is to be stored are fixed and does not change afterwards. In such a scenario, it's better to use tuples as they are faster than the list.
Explanation:
Similar questions