Python 中的反转字典
我想知道哪种方法是在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要使用最大的键删除重复项,请按值对字典迭代器进行排序。对 dict 的调用将使用最后插入的键:
To remove duplicates by using the largest key, sort your dictionary iterator by value. The call to dict will use the last key inserted:
这是反转字典并保留任何重复值中较大的一个的简单直接实现:
这可以使用 dict.get() 收紧一点:
此代码进行较少的比较并使用较少的内容比使用 sorted() 的方法更节省内存。
Here is a simple and direct implementation of inverting a dictionary and keeping the larger of any duplicate values:
This can be tightened-up a bit with dict.get():
This code makes fewer comparisons and uses less memory than an approach using sorted().