Contact: aviboots(AT)netvision.net.il
39,990 questions
51,935 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 '''