Contact: aviboots(AT)netvision.net.il
37,088 questions
48,466 answers
573 users
lst = [12, 33, 51, 77, 90, 100, 171] # print(lst.index(600)) # ValueError: 600 is not in list try : print(lst.index(600)) except ValueError: print('Not found') ''' run: Not found '''