Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
lst = ['Python', 'JAVa', 'c', 'c++', "Rust"] searchfor = 'java' print(searchfor.lower() in [s.lower() for s in lst]) ''' run: True '''
lst = ['Python', 'JaVa', 'c', 'c++', "RuSt"] searchfor = 'RUST' print(searchfor.lower() in [s.lower() for s in lst]) ''' run: True '''