Tuples Manipulation

try:
      l=['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday']
      print 'List :',l
      tup1 = tuple(l) #Converts a list into tuple
      tup2=(1,2,3,4,5,6,7)
      #Adding two Tuples
      tup=tup1+tup2
      print 'New added tuple :',tup
      ntup=tup2*2
      print 'New multiplyed tuple:',ntup
      p=max(tup1)
      print 'The tuple with max value:',p
      p1=min(tup1)
      print 'The tuple with min value:',p1
      #Compares elements of both tuples and same return 0 otherwise -1
      k=cmp(tup2,ntup)
      print k
      #Delete Tuple
      del tup
      print tup
except:
      print 'Tuple does not exist'

Creation and accessing values in Tuples

t=(22,33,44,55,66,77,88,99) #A tuple is a sequence of immutable Python
print 'Tuple elements : ',t
#Accessing Values in Tuples
print 'Tuple first element :',t[0]
print 'tuple last element :',t[len(t)-1]
print '\n'
for i in t:
      print 'Elements in tuple: ',i
print '\n'
for i in range(len(t)):
      print 'Index :',i,'Vaule:',t[i]