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 a string so
98787This is correct
will still come back as true in an if statement.
This is what I have so far.
elif 'This is correct' in text:
print("correct")
This will work with any combination of letters before the Correct... For example fkrjCorrect, 4123Correct and lolcorrect will all come back as true in the if statement. When I want it to come back as true only IF it exactly matches "This is correct"
in
operator, and not==
operator. - Rohit Jainin
searches for substrings while==
checks for exact equality. From your question title I got the impression that you are indeed searching for substrings (in which casein
is correct). But from your text I am getting the impression you actually want to check equality? (In which case==
is correct) - Michael Aquilina