Look ath this example
if ('.NET' or 'JS' or 'python' or 'Java') not in title:
print(title)
It's a part of my code. Title is a string. I want to display title only if not contain any one element of the list. In this example it only exculdes .NET. How can I solve my problem?