gpt4 book ai didi

python - 获取排序的字典值

转载 作者:太空宇宙 更新时间:2023-11-04 10:19:41 24 4
gpt4 key购买 nike

我如何根据排序键获取字典值?例如:

d = {
'first': 'asdf'
'second': 'aaaa'
}

==> ['asdf', 'aaaa']

我在想一些事情:

sorted(x.item(), sort=...)

这将如何完成?

最佳答案

使用排序键:

d = {'first': 'asdf', 'second': 'aaaa'}
values = [d[x] for x in sorted(d)]

关于python - 获取排序的字典值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33045117/

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