CBSE Class 11 Computer Science
Question 22 of 88
Tuples and Dictionary — Question 2
Back to all questionstup[2] = 56
Reason — Tuples in Python are immutable. Therefore, attempting to assign a new value to an existing element, such as tup[2] = 56, will result in an error.