7.Write a python program to create an empty tuple, tuple with items of different data types, slice the tuple, add items to the tuple, and Convert tuple to a list ,Convert a tuple to a string code example
Example: pyhton tuple
#It's like a list, but unchangeable
tup = ("var1","var2","var3")
tup = (1,2,3)
#Error