Answers for "tuple python add element"

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
1

add item to tuple python

>>> T1=(10,50,20,9,40,25,60,30,1,56)
>>> L1=list(T1)
>>> L1
[10, 50, 20, 9, 40, 25, 60, 30, 1, 56]
>>> L1.append(100)
>>> T1=tuple(L1)
>>> T1
(10, 50, 20, 9, 40, 25, 60, 30, 1, 56, 100)
Posted by: Guest on January-28-2021
0

how to add number in tuple

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

Browse Popular Code Answers by Language