gpt4 book ai didi

python - 从python中的列表中搜索

转载 作者:太空宇宙 更新时间:2023-11-04 05:40:16 25 4
gpt4 key购买 nike

我正在尝试从 python 中的列表中进行搜索。每当我输入搜索词时,它总是说“没有推文包含搜索”,即使我知道该词在列表中也是如此。我做错了什么?

elif(ch==3):
match = 0
tweetlist.reverse()
if tweetlist == []:
print("There are no tweets to search.\n")
continue
else:
search = input("What would you like to search for? ")
for tweets in tweetlist:
if(search in tweetlist):
match = 1
if match == 1:
print ("Search Results")
print("----------")
print(tweets.get_author(), "-", tweets.get_age())
print(tweets.get_text(), "\n")
elif match == 0:
print("No tweets contained,", search, "\n")

最佳答案

试试这个:

 ...
matched_tweets = []
if search in tweets.get_text():
match = 1
matched_tweets.append(tweets) # append all the matches to an array
...

# to print out the results
for tweet in matched_tweets:
print(tweet.get_text(), "\n")

关于python - 从python中的列表中搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34189893/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com