message = "I'm new and this is new my account."
The program will try to detect 'hi' in this string even there is no 'hi' in here, it will found the keyword in "and this is m..." part if try to use a code like this:
if "hi" in message.lower():
print("He said hi!")
How can I block this out?