Contact: aviboots(AT)netvision.net.il
39,940 questions
51,877 answers
573 users
import re s = "PYTHON C C++ PHP C#" import re if re.search('python', s, re.IGNORECASE): print("Match") else: print("Not math") ''' run: Match '''