Contact: aviboots(AT)netvision.net.il
40,959 questions
53,424 answers
573 users
lst = [34, 78, 90, 'python', 'java', 'c++'] if 'python' in lst: print('Element is in the list') else: print('Element is not in the list') ''' run: Element is in the list '''