How to concatenate tuples into nested tuples in Python

2 Answers

0 votes
tpl1 = (1, 2, 3),
tpl2 = (4, 5, 6),

tpl = tpl1 + tpl2

print(tpl) 



'''
run:
 
((1, 2, 3), (4, 5, 6))

'''

 



answered Feb 9, 2020 by avibootz
0 votes
tpl1 = (1, 2, 3)
tpl2 = (4, 5)

tpl = (tpl1,) + (tpl2,)

print(tpl) 



'''
run:
 
((1, 2, 3), (4, 5))

'''

 



answered Feb 9, 2020 by avibootz
...