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
Actually, you should look for 'This is correct' string surrounded by word boundaries.
So
import re if re.search(r'\bThis is correct\b', text): print('correct')
should work for you.