我想将Tweepy搜索结果存储到.txt文件中。
但请求的结果似乎是类型,如何将此类型转换为字符串类型?
for tweet in tweepy.Cursor(api.search,q=query,count=100,until=until,lang="en",result_type="mixed",include_entities=True).items():
print type(tweet)
答案 0 :(得分:1)
这似乎是一个非常简单的问题。这就是答案:
str(tweet)