Tuples are immutable, so they support no item assignment: the statement raises TypeError: 'tuple' object does not support item assignment. Python never silently swaps one object for another behind your back, the failure is loud rather than ignored, and no element is replaced. That immutability is also why a tuple can be a dict key while a list cannot.
Official docs