摘要: operator.itemgetter函数operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号。看下面的例子 a = [1,2,3] >>> b=operator.itemgetter(1) //定义函数b,获取对象的第1个域的值>>> b(a) 2 >>> 阅读全文
posted @ 2017-01-11 16:24 蜗牛到牛 阅读(63754) 评论(0) 推荐(1)