Contact: aviboots(AT)netvision.net.il
39,990 questions
51,935 answers
573 users
tpl1 = (1, 2, 3), tpl2 = (4, 5, 6), tpl = tpl1 + tpl2 print(tpl) ''' run: ((1, 2, 3), (4, 5, 6)) '''
tpl1 = (1, 2, 3) tpl2 = (4, 5) tpl = (tpl1,) + (tpl2,) print(tpl) ''' run: ((1, 2, 3), (4, 5)) '''