I guarantee this has been answered somewhere else on SO and you should first check there before asking a new question.
The issue with your code:
if 'Today' or 'sea' in title:
This checks if 'today' is True or if 'sea' is in title, 'today' == type(string) therefore it exists/True, 'sea' in title == True and evaluates to True, if 'today' or 'sea' not in title
'today' is again type(string) and therefore exists/True and 'sea' not in title = False, and again evaluates to True. How to fix this! if 'Today' in title or 'Sea' in title:
or below to make it easily modable! Good Luck!
strings_to_compare = ['Today', 'sea', 'etc...']
for i in strings_to_compare:
if i in title:
print i