Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
tpl = ("python", [736, 837, 919, 202], (34, 56, 89)) print(tpl[0]) print(tpl[1]) print(tpl[1][0]) print(tpl[1][2]) print(tpl[2][0]) print(tpl[2][1]) ''' run: python [736, 837, 919, 202] 736 919 34 56 '''