Contact: aviboots(AT)netvision.net.il
39,844 questions
51,765 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 '''