Source Code:
(back to article)
t1 = (1, 2, 3) t2 = (4, 5, 6) t3 = t1 + t2 print(t3) # Output: (1, 2, 3, 4, 5, 6)
Result:
Report an issue