A tuple is an immutable list
t = ("a", "b", "mpilgrim", "z", "example") print t print t[0] print t[-1] print t[1:3]