gpt4 book ai didi

python - 按值属性对字典进行排序

转载 作者:行者123 更新时间:2023-12-05 08:37:17 24 4
gpt4 key购买 nike

怎么查字典

class Foo:
def __init__(self,value):
self.property = value

dictionary = {"one":Foo(1),
"two":Foo(2)}

Foo 对象的 self.property 的值降序排列?

最佳答案

sorted_dict = {k: v for k, v in sorted(dictionary.items(), key=lambda item: item[1].property)}

关于python - 按值属性对字典进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65873825/

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