Tuple Python Tutorial

t = ("a", "b", "c", "z", "example")
print t 
print t[0]                                           
print t[-1]                                         
print t[1:3]