抱歉,我只是想将每条推文中的 'id_str' 存储到一个名为 ids[].. 的新列表中,但出现以下错误:
Traceback(最近一次调用最后一次):文件“extract_tweet.py”,第 17 行,在 print tweet['id_str'] KeyError: 'id_str'
我的代码是:
import json
import sys
if __name__ == '__main__':
tweets = []
for line in open (sys.argv[1]):
try:
tweets.append(json.loads(line))
except:
pass
ids = []
for tweet in tweets:
ids.append(tweet['id_str'])