I seem unable to find the solution as to why this doesn't work here's the line of code:
if ("yeah" or "yes") in message.content:
await message.channel.send("yep")
else:
await message.channel.send("nope")
I tried using any and even a word list but it didn't work either
what I mean to say is that if any of the words "yeah" or "yes" (or even more) appear in a sentence then the bot must send "yep" if not then it should say "nope"