>>> foo = ('bar', 234, ['a list inside', 'a tuple!']) >>> foo[0] 'bar' >>> foo[0] = "watch out, it's immutable" Traceback (most recent call last): File "<stdin>", line 1, in ? TypeError: object doesn't support item assignment