如何在另一本词典中显示具有相同值的键?

时间:2019-07-19 08:21:27

标签: python dictionary

我有一些键值相同的字典数据。我想创建一个新字典,该字典将向我显示具有相同值的键。 我的数据是:

{'xr': None, 'fluence': 8.0, 'macit': 4.0, 'com': 3.0, 'crypto': None, 'cross': None, 'a': 16.0, 'sleep': 19.0}

我想看这本字典,

{'None': {xr,crypto,cross}, 8.0:'fluence', 4.0: 'macit', 3.0: 'com',16.0: 'a', 19.0: 'sleep'}

我该怎么做?

0 个答案:

没有答案