在下面的代码中,
[{word: score_tweet(tweet) for word in tweet} for tweet in tweets]
我得到一个字典列表:
[{u'soad': 0.0, u'<3': 0.0}, {u'outros': 0.0, u'acredita': 0.0}]
我只想获得一个平面字典,例如:
{u'soad': 0.0, u'<3': 0.0, u'outros': 0.0, u'acredita': 0.0}
我应该如何更改我的代码?注意:我使用的是 Python 2.7。