Python和Tweepy:CSV文件中的结果

问题描述 投票:0回答:1

我在CSV文件中获取推文的代码:

csvfile = open('twits.csv','w')
csvwriter = csv.writer(csvfile)

for item in result:
    csvwriter.writerow([unicode(item.user.screen_name).encode("utf-8"),unicode(item.text).encode("utf-8"),item.user.followers_count])

我得到的错误:

csvwriter.writerow([unicode(item.user.screen_name).encode("utf-8"),unicode(item.text).encode("utf-8"),item.user.followers_count])
**NameError: name 'unicode' is not defined**

我该如何解决?谢谢。

python csv unicode tweepy
1个回答
0
投票

您使用的是Python 3吗?The unicode type来自Python 2,在Python 3中不再存在,如unicode

© www.soinside.com 2019 - 2024. All rights reserved.