I'm using feed parser in python and I'm a beginner in python.
for post in d.entries:
if test_word3 and test_word2 in post.title:
print(post.title)
What I'm trying to do is make feed parser find a couple of words inside titles in the RSS feeds.