Result Size: 625 x 571
demo_tuple_concat.py:
x
 
tuple1 = ("a", "b" , "c")
tuple2 = (1, 2, 3)
tuple3 = tuple1 + tuple2
print(tuple3)
C:\Users\My Name>python demo_tuple_concat.py
('a', 'b', 'c', 1, 2, 3)