在dicts之间划分

问题描述 投票:2回答:2

我有两个词:

dict_1 = {'A': ['red', 'red', 'blue'],
          'B': ['red', 'green'],
          'C': ['blue', 'green'], ....}

dict_2 = {'A': Counter({'red': 2, 'blue': 1}),
          'B': Counter({'red': 1, 'green': 1}),
          'C': Counter({'blue': 1, 'green': 1}), ....}

我需要在它们之间做一些简单的划分,然后成对地绘制它们。期望的结果是这样或任何可以进行划分的结果:

fraction = {'A': [2/3, 1/3],
            'B': [1/2, 1/2],
            'C': [1/2, 1/2], ....} 

现在,我只能得到第一个数字,任何建议将不胜感激!这是我的代码:

fraction = { key: [v/len(colorz)] for namez, colorz in dict_1.items() 
                          for name, color in dict_2.items() 
                          for k, v in color.items() }
python python-3.x dictionary data-structures division
2个回答
2
投票

使用分数的版本。

from fractions import Fraction
{k: [Fraction(v[i], sum(v.values())) for i in v] for k, v in dict_2.items()}

4
投票

.countpretty fast,所以我没有使用dict_2Counter,但它可以使用它。

fraction = {k: [l.count(e)/len(l) for e in set(l)] for k, l in dict_1.items()}

但这意味着简短而不一定有效。如果它需要更快,你可以做其他事情。如果你想要它们作为字符串

fraction = {k: [f'{e.count(l)}/{len(l)}' for e in set(l)] for k, l in dict_1.items()}

如果你想要它们作为减少分数的字符串使用fraction模块

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