1First, convert tuple to list by built-in function list().
2You can always append item to list object.
3Then use another built-in function tuple() to
4convert this list object back to tuple.
5You can see new element appended to original tuple representation.
6
7by tutorialspoint.com
8
9happy coding :D