add value in tuple python code example
Example 1: python append to tuple list
apple = ('fruit', 'apple')
banana = ('fruit', 'banana')
dog = ('animal', 'dog')
some_list = [apple, banana, dog]
print(some_list)
new_thing = ('animal', 'cat')
some_list.append(new_thing)
print(some_list)
Example 2: 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)