Contact: aviboots(AT)netvision.net.il
41,321 questions
53,836 answers
573 users
tpl = ('a', 'b', 'c', 'd', 'e', 'f', 'g') index = tpl.index('a') print(index) index = tpl.index('g') print(index) ''' run: 0 6 '''