Contact: aviboots(AT)netvision.net.il
41,847 questions
54,534 answers
573 users
text = "The FOX Profession is Python Programmer" search_term = "fox" if search_term.casefold() in text.casefold(): print("Found") else: print("Not found") ''' run: Found '''