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
Use the comparison operator == instead of in then:
==
in
if text == 'This is correct': print("Correct")
This will check to see if the whole string is just 'This is correct'. If it isn't, it will be False
'This is correct'
False