我在python中使用了feed解析器,而且我是python的初学者。
sudo apt-get install libcurl3
我要做的是让Feed解析器在RSS Feed中的标题内找到几个单词。
答案 0 :(得分:0)
请注意,和不会分布在 运算符中。
if test_word3 in post.title and
test_word2 in post.title:
应该解决你的问题。你写的内容被评估为
if test_word3 and (test_word2 in post.title):
......这变成......
if (test_word3 != "") and (test_word2 in post.title):
简化一点...... 字符串的布尔值是否为非空。 整数的布尔值是否为非零。