python中列表排序,字典排序,列表中的字典排序
摘要:
#-*- encoding=utf-8 -*- # python3代码 import operator 一. 按字典值排序(默认为升序) x = {1:2, 3:4, 4:3, 2:1, 0:0} 1. sorted_x = sorted(x.iteritems(), key=operator.it 阅读全文
posted @ 2018-05-30 23:06 多一点 阅读(32206) 评论(2) 推荐(3) 编辑