python3使用operator.itemgetter对字典进行排序

operator.itemgetter函数 operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号(即须要获取的数据在对象中的序号),下面看例子。html a = [1,2,3]  >>> b=operator.itemgetter(1)      //定义函数b,获取对象的第1个域的值 >>> b(a)  2  >>> b=operator.itemgett
相关文章
相关标签/搜索