Basically I need to find a way to figure out a way to find the EXACT word in a string. All the information i have read online has only given me how to search for letters in
Break up the string into a list of strings with .split() then use the in operator.
This is much simpler than using regular expressions.