摘要: 1.dict合并有返回值 解包法 c = {**a,**b} 2.排序list of dict or tuple 以list of dict 为例 单个字段的排序 sorted(performance_info, key=lambda k: k[0]) 2.多个字段排序 sorted(perform 阅读全文