add list to tuple python code example

Example 1: python add to list

list_to_add.append(item_to_add)
# or
list_to_add.push(item_to_add)

Example 2: how to append list in python

list1 = ["hello"]
list1 = list1 + ["world"]

Example 3: how to add number in tuple

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

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