# Define some guinea pig for an experiments...
tpl = ('value', 000, 'will never be changed', [])
# Tuple by itself is immutable, which means that you can't change its size or
# elemets references:
try:
tpl[0] = "changed"
except TypeError as e:
print e
# But if elements inside tupl are mutable, they could be changed:
tpl[-1].append("changed")
print tpl