I am trying to make a program like this I want to detect if there is abusive comment in any of the comment please tell if this is correct way to write a program
c1=input("please enter your comment")
if "click here" or "buy now" or "link" in c1:
print("this is spam")
else:
print("thank you for your feedback")