Contact: aviboots(AT)netvision.net.il
41,429 questions
53,976 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 '''