The anwser for tuples is

tup1 = (12,3,4,5,5,7)
tup2 = (100,)
tup3 = tup1 + tup2
print('The maximum and minimum of the tuple is %s and %s'%(max(tup3),min(tup3)))
print('The slicing in tuple is' + str((tup3[1:4])))
print('The length of the tuple is %s'%len(tup3))
tup3[0] = 44