Tuples are immutable in Python. Any attempt to modify a tuple will raise a TypeError or AttributeError. This demonstrates that tuples cannot be changed after creation.
Tests if direct assignment to tuple elements is allowed
Direct Assignment [0] = "value"