在推文的嵌套Mongo字典中使用总和

时间:2018-12-01 17:29:49

标签: python mongodb twitter

我编写了此函数以返回嵌套字典中的转发数。我使用mongo收集了这些推文。

我想对其进行修改以返回转发的总和,而不是每条转发的转发数量。如何使用已写的内容完成此操作?我对Python非常陌生,对Mongo则更是如此。

count = 0
def retweet_data(tweets):
 for tweet in tweets:
     if count <= tweet['retweet_count']:
         print ('The number of packers retweets:', tweet['retweet_count'])
retweet_data(gb_pack)

这将返回:

The number of packers retweets: 35
The number of packers retweets: 0
The number of packers retweets: 0
The number of packers retweets: 70
The number of packers retweets: 59
The number of packers retweets: 59

我希望它返回:加壳程序转发的数量:250(或总数)

如果我想从每个条目中提取位置,只需将“ retweet_count”替换为“ location”

0 个答案:

没有答案