fork download
  1. tup1=(12,34,56)
  2. tup2=('abc','xyz')
  3. tup3=tup1+tup2
  4. print(tup3)
Success #stdin #stdout 0.01s 7140KB
stdin
Standard input is empty
stdout
(12, 34, 56, 'abc', 'xyz')