I am writing a simple if else loop to check if a string match with multiple words like this:
if "word1" in data or "word2" in data or "word3" in data:
....
I am not sure if we have a more comprehensive way to process this kind of comparison ?
Thank you very much