當前位置:成語大全網 - 新華字典 - python dict排序

python dict排序

dict = {'A':3,'B':1,'C':2,'D':5}

# 字典鍵值對以元組返回並組成列表

my_sort = list(dict.items())

# 以每個元組的第二個元素排序

# 升序

my_sort.sort(key=lambda x:x[1])

print(my_sort)

#降序

my_sort.sort(key=lambda x:x[1],reverse=True)

print(my_sort)