Contact: aviboots(AT)netvision.net.il
41,551 questions
54,171 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 '''