add item to tuple
tpl1 = ('BMW', 'Lamborghini', 'Bugatti')
print(tpl1)
#Now you have to add an item
tpl1 = list(tpl1)
print(tpl1)
tpl1.append('Mercedes Benz')
tpl1 = tuple(tpl1)
print(tpl1)
#*Run the code*
>> ('BMW', 'Lamborghini', 'Bugatti')
>> ['BMW', 'Lamborghini', 'Bugatti']
>> ('BMW', 'Lamborghini', 'Bugatti', 'Mercedes Benz')
#Task accomplished