Suppose a tuple T is declared as T = (10, 12, 43, 39), which of the following is incorrect ?
T[2] = -29
Reason — Tuples are immutable. Hence we cannot perform item-assignment in tuples.