In this example we will show how to join two or more tuples in Python.
Source Code
tuple1 = ('apple', 'banana', 'orange')
tuple2 = ('cow', 'sheep', 'pig')
tuple3 = tuple1 + tuple2
print(tuple3)
Output:
('apple', 'banana', 'orange', 'cow', 'sheep', 'pig')