search_text = 'man' str = 'You are good man.' if search_text in str: print(f'Found "{search_text}" in string') else: print('Not found')