Answers for "how can you add an extra element to a tuple"

0

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
Posted by: Guest on July-31-2021
0

add one element to tuple python

a = ('2',)
b = 'z'
new = a + (b,)
Posted by: Guest on August-04-2020

Code answers related to "how can you add an extra element to a tuple"

Browse Popular Code Answers by Language