tuple add element python code example

Example 1: how to add int to tuple python

t = ('add','to','the')
t += ('tuple',) #('add','to','the','tuple')

Example 2: how to add number in tuple

a = ('2',)
b = 'z'
new = a + (b,)

Example 3: how to add strings in tuple in python

First, convert tuple to list by built-in function list().
You can always append item to list object.
Then use another built-in function tuple() to 
convert this list object back to tuple.
You can see new element appended to original tuple representation.

by tutorialspoint.com 

happy coding :D

Example 4: 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)