Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
tpl_tpl = ('a', ('b', 'c'), ('a', 'b'), ('x', 'y'), [5, 6, 7]) index = tpl_tpl.index(('x', 'y')) print(index) ''' run: 3 '''