Python 中的反转字典

发布于 2024-12-11 04:39:53 字数 156 浏览 0 评论 0原文

我想知道哪种方法是在 python 中反转字典的有效方法。我还想通过比较键并选择较大的值而不是较小的值(假设它们可以进行比较)来消除重复值。这是反转字典:

inverted = dict([[v,k] for k,v in d.items()])

I want to know which would be an efficient method to invert dictionaries in python. I also want to get rid of duplicate values by comparing the keys and choosing the larger over the smaller assuming they can be compared. Here is inverting a dictionary:

inverted = dict([[v,k] for k,v in d.items()])

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

唠甜嗑 2024-12-18 04:39:53

要使用最大的键删除重复项,请按值对字典迭代器进行排序。对 dict 的调用将使用最后插入的键:

import operator
inverted = dict((v,k) for k,v in sorted(d.iteritems(), key=operator.itemgetter(1)))

To remove duplicates by using the largest key, sort your dictionary iterator by value. The call to dict will use the last key inserted:

import operator
inverted = dict((v,k) for k,v in sorted(d.iteritems(), key=operator.itemgetter(1)))
蹲墙角沉默 2024-12-18 04:39:53

这是反转字典并保留任何重复值中较大的一个的简单直接实现:

inverted = {}
for k, v in d.iteritems():
    if v in inverted:
        inverted[v] = max(inverted[v], k)
    else:
        inverted[v] = k  

这可以使用 dict.get() 收紧一点:

inverted = {}
for k, v in d.iteritems():
    inverted[v] = max(inverted.get(v, k), k)

此代码进行较少的比较并使用较少的内容比使用 sorted() 的方法更节省内存。

Here is a simple and direct implementation of inverting a dictionary and keeping the larger of any duplicate values:

inverted = {}
for k, v in d.iteritems():
    if v in inverted:
        inverted[v] = max(inverted[v], k)
    else:
        inverted[v] = k  

This can be tightened-up a bit with dict.get():

inverted = {}
for k, v in d.iteritems():
    inverted[v] = max(inverted.get(v, k), k)

This code makes fewer comparisons and uses less memory than an approach using sorted().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文