1tpl1 = ('BMW', 'Lamborghini', 'Bugatti')
2print(tpl1)
3#Now you have to add an item
4tpl1 = list(tpl1)
5print(tpl1)
6tpl1.append('Mercedes Benz')
7tpl1 = tuple(tpl1)
8print(tpl1)
9#*Run the code*
10>> ('BMW', 'Lamborghini', 'Bugatti')
11>> ['BMW', 'Lamborghini', 'Bugatti']
12>> ('BMW', 'Lamborghini', 'Bugatti', 'Mercedes Benz')
13#Task accomplished
1>>> T1=(10,50,20,9,40,25,60,30,1,56)
2>>> L1=list(T1)
3>>> L1
4[10, 50, 20, 9, 40, 25, 60, 30, 1, 56]
5>>> L1.append(100)
6>>> T1=tuple(L1)
7>>> T1
8(10, 50, 20, 9, 40, 25, 60, 30, 1, 56, 100)