Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
def find(lst, n): lenlst = len(lst) for i in range(0, lenlst - 1): if (lst[i] == n): return True; return False lst = [1, 3, 8, 5, 9, 2] if (find(lst, 5)): print("Yes") else: print("No") ''' run: Yes '''