mylist = ["my", "try","some","words"]
message = "Do u want my chips?"
if any(x in message for x in mylist):
print("any of words is in the list")
else:
print("words not in the message")
this code works fine and I use a similar code in my project but however I want to print the "x" in this code any of words is in the list but which one I want to learn this how do I that