gpt4 book ai didi

python : list of dictionary values by alphabetical order of keys

转载 作者:太空宇宙 更新时间:2023-11-03 12:27:56 25 4
gpt4 key购买 nike

是否有一种从字典中获取值列表的简单方法,但所有值都按字典中键的字母顺序排序?

最佳答案

您有多种选择;最简单的方法是对 items 进行排序,通过列表理解挑选出值:

[v for k, v in sorted(dictionary.iteritems())]

因为元组是按字典顺序排序的;首先按键,然后按值。如果您使用的是 Python 3,请将 iteritems() 替换为 items()

您可以只对键进行排序并将其转换为值:

[dictionary[k] for k in sorted(dictionary)]

演示:

>>> dictionary = {'foo': 42, 'bar': 38, 'baz': 20}
>>> [v for k, v in sorted(dictionary.iteritems())]
[38, 20, 42]
>>> [dictionary[k] for k in sorted(dictionary)]
[38, 20, 42]

之后访问 key 也是更快的选择:

>>> timeit.timeit('[v for k, v in sorted(dictionary.iteritems())]', 'from __main__ import dictionary')
3.4159910678863525
>>> timeit.timeit('[d[key] for key in sorted(d)]', 'from __main__ import dictionary as d')
1.5645101070404053

是的,将小型字典排序一百万次的速度是原来的两倍多。

关于 python : list of dictionary values by alphabetical order of keys,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23169224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com