Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
tpl_tpl = ('a', ('b', 'c'), ('a', 'b'), ('x', 'y'), [5, 6, 7], [9, 8]) index = tpl_tpl.index([9, 8]) print(index) ''' run: 5 '''