Find the errors. State reasons.
t = (1, "a", 9.2) t[0] = 6
t[0] = 6 will raise a TypeError as tuples are immutable (i.e., their elements cannot be changed after creation).
t[0] = 6