python中字典按key值排序的实现方法【sorted()函数】

708次阅读
没有评论
python中字典按key值排序的实现方法【sorted()函数】

python中字典按key值排序的实现方法?向大家介绍用sorted()函数实现按key值排序的原理和实现实例。

sorted()函数

可以对数字(从小到大。从大到小)或字符串(ASCII编码)进行排序

sorted()函数语法

sorted(iterable,key,reverse)

按key排序

只是输出的key值的排序列表

sorted(d.keys(), reverse=True/False)

sorted()函数使用实例

对字典按键(key)进行排序

#对字典按键(key)进行排序(默认由小到大)
test_data_0=sorted(dict_data.keys())
#输出结果
print(test_data_0) #[3, 6, 7, 8, 10]
test_data_1=sorted(dict_data.items(),key=lambda x:x[0])
#输出结果
print(test_data_1) #[(3, 11), (6, 9), (7, 6), (8, 2), (10, 5)]

以上就是python中用sorted()函数实现字典按key值排序的使用方法,希望能帮到你哦~

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:wuyou2021-05-11发表,共计492字。
新手QQ群:570568346,欢迎进群讨论 Python51学习