Language Basics Python

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