Tuple Python

T = (1, [2, 3], 4)
T[1][0] = 'spam'                  # works
print T