list = [ 'Hai', 123 , 1.75, 'Prayag', 100.25 ] smalllist = [251, 'Verma'] print (list) # Prints complete list print (list[0]) # Prints first element of the list print (list[-1]) # Prints last element of the list print (list[1:3]) # Prints elements starting from 2nd till 3rd print (list[2:]) # Prints elements starting from 3rd element print (smalllist * 2) # Prints list two times print (list + smalllist) # Prints concatenated lists