cara bergabung dengan dua tupel dalam python

#Join two tuples:
  
tuple1 = ("a", "b" , "c")
tuple2 = (1, 2, 3)

tuple3 = tuple1 + tuple2
print(tuple3)

#Output : ('a', 'b', 'c', 1, 2, 3)
Asif Iqbal Paracha