嵌套的词典理解

时间:2013-05-13 00:04:28

标签: python

在以下代码中,

[{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。

4 个答案:

答案 0 :(得分:3)

{word: score_tweet(tweet) for tweet in tweets for word in tweet}

答案 1 :(得分:2)

for循环移到dict理解中:

{word: score_tweet(tweet) for tweet in tweets for word in tweet}

请记住,一行中的两个for循环很难阅读。我会做这样的事情:

scores = {}

for tweet in tweets:
    tweet_score = score_tweet(tweet)

    for word in tweet:
        scores[word] = tweet_score

答案 2 :(得分:0)

您需要一个中间步骤。

words = []
tweets = ["one two", "three four"]
for tweet in tweets:
    words.extend(tweet.split())
scores = {word: score_tweet(word) for word in words}

答案 3 :(得分:0)

"""
[{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}
"""
tweets_merged = {}
tweets = [{u'soad': 0.0, u'<3': 0.0}, {u'outros': 0.0, u'acredita': 0.0}]
for tweet in tweets:    
    tweets_merged = dict(tweets_merged.items() + tweet.items())
print tweets_merged