我有一个Twitter经理程序,其中一个选项是搜索包含用户提供的任何输入的推文。当列表中找到匹配项时,我无法找到让for循环跳过else语句的方法。由于它现在有效,程序将打印它找到的与搜索条件匹配的推文,但也打印出没有找到包含搜索条件的推文。
# Option 3, search tweet_list for specific content and display if found
# in descending order starting with the most recent.
elif count == 3:
tweet_list.reverse()
if len(tweet_list) == 0:
print('There are no tweets to search.', '\n')
else:
search = input('What would you like to search for? ')
print('\nSearch Results')
print('--------------')
for n in tweet_list:
a = n.get_author()
b = n.get_text()
c = n.get_age()
if search in a or search in b:
print(a + '-' + c + '\n' + b + '\n')
else:
print('No tweets contain "' + search + '".' + '\n')
print('')
答案 0 :(得分:0)
创建一个变量,比如found
,并将其初始化为False
。当您找到推文时,请将其设置为True
。然后将else:
替换为if not found:
。