Python
文章平均质量分 69
yysunlife
这个作者很懒,什么都没留下…
展开
-
python中的extend和append的区别
>>> list=['a','b','c']>>> list['a', 'b', 'c']>>> list.extend(['d','e','f'])>>> list['a', 'b', 'c', 'd', 'e', 'f']>>> len(list)6>>> list[-1]‘f’>>> list=['a','b','c']>>> list转载 2014-07-20 11:36:44 · 857 阅读 · 0 评论 -
Python 中sorted函数和operator.itemgetter函数
operator.itemgetter函数operator模块提供的itemgetter函数用于获取对象的哪些维的数据,参数为一些序号(即需要获取的数据在对象中的序号),下面看例子。a = [1,2,3] >>> b=operator.itemgetter(1) //定义函数b,获取对象的第1个域的值>>> b(a) 2 >>> b=operator.item原创 2014-07-19 17:47:25 · 1312 阅读 · 0 评论