python列表操作
Posted qilf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python列表操作相关的知识,希望对你有一定的参考价值。
获取长度 len(listname)
访问元素 listname[index] index=-1 可以方便地访问最后一个元素
添加元素 listname.append(item) 向列表尾添加元素
listname.insert(index, item) 向指定位置插入元素
list1name.extend(list2name) 将list2中的每个元素分别添加到list1中
合并列表 list1name + list2name 得到一个新列表
删除元素 del listname[index]
定位元素 listname.index(item) 元素不存在会抛出异常
遍历列表 for i in range(len(listname)):
for index,value in enumerate(listname):
列表排序 listname.sort( ) 按升序对元素排序 可选参数 key = function 按某种方式对列表排序
列表反序 listname.reverse( )
以上是关于python列表操作的主要内容,如果未能解决你的问题,请参考以下文章