当前位置:   article > 正文

Python列表操作详解_python的列表用法

python的列表用法

目录

前言:

1、列表的创建与删除

1.1  创建有两种方式

1.2  列表特点:

2、列表的查询操作

2.1  给元素查索引

 2.2  给索引查元素

2.3  获取列表中多个元素

2.4  使用循环遍历列表

3、列表元素的增,删,改

3.1  增添元素:

3.1.1  使用append()函数增添元素:

3.1.2  使用extend()函数增添元素:

3.1.3  使用insert()函数增添元素:

3.1.4  使用切片方法增添元素:

3.2  删除:

3.2.1  使用remove()函数删除元素:

3.2.2  使用pop()函数删除元素:

3.2.3  使用切片方式删除元素:

3.2.4  clear():

3.2.5  del:

3.3  修改元素:

3.3.1  使用索引修改元素:

3.3.2  使用切片方式修改元素:

4、列表元素的排序

4.1  调用sort()方法对列表排序

4.2  调用内置函数sorted()对列表进行排序

5、列表生成式


前言:

什么是列表:变量可以存储一个元素,而列表是一个“大容器”可以存N多个元素,程序可以方便的对这些数据进行整体操作

注:列表相当于其他语言中的数组

1、列表的创建与删除

1.1  创建有两种方式

  • 方法1:使用中括号
  • 方法2:调用内置函数list()
  1. '''第一种方法,使用中括号[]'''
  2. lst=['路飞','索隆',98]
  3. print(lst)#结果:['路飞', '索隆', 98]
  4. '''第二种方法,使用内置函数list()'''
  5. lst2=list(['路飞','索隆',98])
  6. print(lst2)#结果:['路飞', '索隆', 98]

列表内存示意图:

1.2  列表特点:

  • 列表元素按顺序有序排列
  • 索引映射唯一一个数据(索引可以看做其他语言的数组下标)
  • 列表可以存储重复数据
  • 任意数据类型混存
  • 根据需要动态分配和回收内存

2、列表的查询操作

2.1  给元素查索引

index()函数:用于查询字符串在列表中的索引

  1. #index()函数用于获取列表中元素的索引
  2. lst1=list(['路飞',98,'乔巴','索隆'])
  3. print(lst1.index('索隆'))#获取列表中字符串"索隆"的索引 结果:0
  4. print(lst1.index('索隆',1,3))#在索引1到3不包括3中查找索隆,也就是说在98,‘乔巴’中查找索隆

 2.2  给索引查元素

  • 正向索引从0到N-1
  • 逆向索引从-N到-1
  1. lst1=['hello','world','python',98,3.14]
  2. print(lst1[2])#获取列表中索引为2的元素 结果:python
  3. print(lst1[-1])#获取列表中最后一个元素 结果:3.14

2.3  获取列表中多个元素

注:

  • 切片操作,列表名[start:stop:step]
  • 切片结果:原列表片段的拷贝
  • 切片的范围:[strat,stop),从strat开始,到stop结束,不包括stop
  • step默认步长为:1

 step步长为正数:

  1. lst1=[10,20,30,40,50,60,70,80,90]
  2. #step为正数:切片的第一个元素默认是列表的第一个元素
  3. lst2=lst1[1:6:]#索引1到6不包括6 注:不写步长默认为1
  4. print(lst2)#结果:[20, 30, 40, 50, 60]
  5. lst2=lst1[:6:]#索引0到6不包括6 注:不写start默认为0
  6. print(lst2)#结果:[10, 20, 30, 40, 50, 60]
  7. lst2=lst1[::]#索引0到最后 注:不写stop默认到最后
  8. print(lst2)#结果:[10, 20, 30, 40, 50, 60, 70, 80, 90]
  9. lst2=lst1[1:6:]#索引0到最后 注:不写stop默认到最后
  10. print(lst2)#结果:[10, 20, 30, 40, 50, 60, 70, 80, 90]

step步长为负数:

  1. lst1=[10,20,30,40,50,60,70,80,90]
  2. #step为负数:切片的第一个元素默认是列表的最后一个元素
  3. lst2=lst1[::-1]#从最后一个输出到第一个
  4. print(lst2)#结果:[90, 80, 70, 60, 50, 40, 30, 20, 10]
  5. lst2=lst1[8::-1]#从索引为8输出到索引为6不不包括6
  6. print(lst2)#结果:[90, 80]
  7. lst2=lst1[8:6:-1]#从索引为8输出到索引为6不不包括6
  8. print(lst2)#结果:[90, 80]

2.4  使用循环遍历列表

  1. lst1=[10,20,30,40,50,60,70,80,90]
  2. for item in range(9):
  3. print(lst1[item],end='\t')
  4. print()
  5. for item in lst1:
  6. print(item,end='\t')

3、列表元素的增,删,改

3.1  增添元素:

增加操作方法操作描述
append()在列表的末尾添加一个元素
extend()在列表末尾至少添加一个元素
insert()在列表任意位置添加一个元素
切片在列表任意位置添加至少一个元素

3.1.1  使用append()函数增添元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1.append('你好')
  4. print('增后lst1:'+str(lst1))#结果:增后lst1:['hello', 'world', 90, 3.14, '你好']

3.1.2  使用extend()函数增添元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. '''
  4. #题目将lst2元素放入lst1中
  5. lst2=[10,20,30]
  6. lst1.append(lst2)
  7. print('增lst2后lst1:'+str(lst1))
  8. #增lst2后lst1:['hello', 'world', 90, 3.14, [10, 20, 30]]
  9. #注:将lst2作为一个元素放入到lst1中
  10. #显然上面的代码不满足要求
  11. '''
  12. lst2=[10,20,30]
  13. lst1.extend(lst2)
  14. print('增lst2后lst1:'+str(lst1))
  15. #结果:增lst2后lst1:['hello', 'world', 90, 3.14, 10, 20, 30]

3.1.3  使用insert()函数增添元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1.insert(1,90)#在索引为1的位置上添加90
  4. print('增90后lst1:'+str(lst1)) #结果:增90后lst1:['hello', 90, 'world', 90, 3.14]

3.1.4  使用切片方法增添元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst2=[10,20,30]
  4. lst1[1::]=lst2#结果:['hello', 10, 20, 30] 注:从索引为1开始后面都不要换位lst2
  5. print('lst1切片增加lst2:'+str(lst1))#结果:lst1切片增加lst2:['hello', 10, 20, 30]
  6. '''
  7. lst1[1:3:]=lst2#结果:['hello', 10, 20, 30] 注:将索引1到3不包括3的数据切掉换为lst2
  8. print('lst1切片增加lst2:'+str(lst1))#结果:lst1切片增加lst2:['hello', 10, 20, 30, 3.14]
  9. '''

3.2  删除:

删除操作方法操作描述
remove()一次删除一个元素
重复元素只删除第一个
元素不存在抛出ValueError

pop()

删除一个指定索引位置上的元素
指定索引不存在抛出IndexError
不指定索引,删除列表中最后一个元素
切片一次至少删除一个元素
clear()清空列表
del删除列表

3.2.1  使用remove()函数删除元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1.remove(90)
  4. print('删除后lst1:'+str(lst1))#结果:删除后lst1:['hello', 'world', 3.14]

3.2.2  使用pop()函数删除元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1.pop(0)
  4. print('删除后lst1:'+str(lst1))#结果:删除后lst1:['world', 90, 3.14]
  5. lst1.pop()#不指定参数,删除列表最后的元素
  6. print('删除后lst1:'+str(lst1))#结果:删除后lst1:['world', 90]

3.2.3  使用切片方式删除元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst2=lst1[1:3:]#切片不会对元列表操作,会产生行的列表
  4. print('切片后lst2:'+str(lst2))#结果:切片后lst1:['world', 90]
  5. #如果不行产生新的列表
  6. lst1[1:3:]=[]#用空列表代替切到的数据
  7. print('切片后不产生新列表:'+str(lst2))#结果:切片后lst1:['world', 90]

3.2.4  clear():

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1.clear()
  4. print('clear()后的lst1:'+str(lst1))#结果:clear()后的lst1:[]

3.2.5  del:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))
  3. #结果:原lst1:['hello', 'world', 90, 3.14]
  4. del lst1
  5. print('del后的lst1:'+str(lst1))
  6. #报错:NameError: name 'lst1' is not defined

3.3  修改元素:

修改操作方法操作描述
索引单个修改
切片修改多个

3.3.1  使用索引修改元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))
  3. #结果:原lst1:['hello', 'world', 90, 3.14]
  4. lst1[1]='你好'
  5. print('修改后的lst1:'+str(lst1))
  6. #结果:修改后的lst1:['hello', '你好', 90, 3.14]

3.3.2  使用切片方式修改元素:

  1. lst1=['hello','world',90,3.14]
  2. print('原lst1:'+str(lst1))#结果:原lst1:['hello', 'world', 90, 3.14]
  3. lst1[1:3]=[100,200,300,4000]
  4. print('修改后的lst1:'+str(lst1))#结果:修改后的lst1:['hello', 100, 200, 300, 4000, 3.14]

4、列表元素的排序

俩种方式:

  • 调用sort()方法,列表中索引元素默认按照从小到大进行排序,可以指定reverse=Ture,进行降序排序
  • 调用内置函数sorted(),可以指定reverse=Ture,进行降序排序,原列表不发生改变

4.1  调用sort()方法对列表排序

  1. lst1=[21,54,3,20,71,1,9,78]
  2. print('原lst1:'+str(lst1))
  3. #结果:原lst1:[21, 54, 3, 20, 71, 1, 9, 78]
  4. lst1.sort()
  5. print('顺序排序后的lst1:'+str(lst1))
  6. #结果:顺序排序后的lst1:[1, 3, 9, 20, 21, 54, 71, 78]
  7. lst1.sort(reverse=True)
  8. print('逆序排序后的lst1:'+str(lst1))
  9. #结果:逆序排序后的lst1:[78, 71, 54, 21, 20, 9, 3, 1]

4.2  调用内置函数sorted()对列表进行排序

  1. lst1=[21,54,3,20,71,1,9,78]
  2. print('原lst1:'+str(lst1))
  3. #结果:原lst1:[21, 54, 3, 20, 71, 1, 9, 78]
  4. lst2=sorted(lst1)#sorted()产生新列表
  5. print(lst2)#结果:[1, 3, 9, 20, 21, 54, 71, 78]
  6. lst2=sorted(lst1,reverse=True)#sorted()产生新列表
  7. print(lst2)#结果:[78, 71, 54, 21, 20, 9, 3, 1]

5、列表生成式

注:语法格式:[表达式  for  i  in  range(1,10)]

  1. #i 和 i*i 是列表中存放的数据,for循环是对列表汇总每一个i进行操作
  2. lst=[i for i in range(1,10)]
  3. print(lst)
  4. #[1, 2, 3, 4, 5, 6, 7, 8, 9]
  5. lst1=[i*i for i in range(1,10)]
  6. print(lst1)
  7. #[1, 4, 9, 16, 25, 36, 49, 64, 81]
  8. #思考:列表中存放2,4,6,8,10
  9. lst3=[i for i in range(2,11,2)]
  10. print(lst3)
  11. #[2, 4, 6, 8, 10]
  12. lst4=[i*2 for i in range(1,6)]
  13. print(lst4)
  14. #[2, 4, 6, 8, 10]

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/535234
推荐阅读
相关标签
  

闽ICP备14008679号