Python元素集合的列表切片

作者:bai666ai 时间:2023-08-08 23:08:57 

一、列表切片(Slicing)

由于列表是元素的集合,我们应该能够获得这些元素的任何子集。 例如,如果想从列表中获得前三个元素,我们应该能够轻松地完成。 对于列表中间的任何三个元素,或最后三个元素,或列表中任何位置的任何x个元素,情况也应如此。 列表的这些子集称为切片。

If L is a list, the expression L [ start : stop : step ] returns the portion of the list from index start to index stop, at a step size step.

Python元素集合的列表切片

二、基础实例

下面是列表切片的一个基本示例:

Python元素集合的列表切片

#Example: Slice from index 2 to 7

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[2:7])    # ['c', 'd', 'e', 'f', 'g']

['c', 'd', 'e', 'f', 'g']

三、带有负索引的切片 (Slice with Negative Indices)

可以在切片列表时指定负索引。

例如: Slice from index -7 to -2、

Python元素集合的列表切片


L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[-7:-2])    # ['c', 'd', 'e', 'f', 'g']
['c', 'd', 'e', 'f', 'g']

四、带有正负索引的切片

可以同时指定正索引和负索引。

# Slice from index 2 to -5

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[2:-5])    # ['c', 'd']
['c', 'd']

五、指定切片step

可以使用step参数指定切片的步长。

step参数是可选的,默认情况下为1。

Python元素集合的列表切片

#Returns every 2nd item between position 2 to 7

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[2:7:2])    # ['c', 'e', 'g']
['c', 'e', 'g']

六、负步长

可以指定负步长。

#Example: Returns every 2nd item between position 6 to 1

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[6:1:-2])    # ['g', 'e', 'c']
['g', 'e', 'c']

七、在开始和结束处切片 (Slice at Beginning & End)

省略起始索引会从索引0开始切片。

含义,L [:stop]等效于L [0:stop]

# Example: Slice the first three items from the list

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[:3])    # ['a', 'b', 'c']
['a', 'b', 'c']

而省略stop索引会将切片延伸到列表的末尾。

意思是L [start:]等效于L [start:len(L)]

Example: 从列表中切掉最后三项

L = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
print(L[6:])    # ['g', 'h', 'i']
['g', 'h', 'i']

八、反转列表 (Reverse a List)

可以通过省略开始索引和停止索引并将步骤指定为-1来反转列表。

Example: 使用切片运算符反转列表

L = ['a', 'b', 'c', 'd', 'e']
print(L[::-1])    
['e', 'd', 'c', 'b', 'a']

九、修改多个列表元素值

可以使用切片赋值一次修改多个列表元素。

Example: 使用slice修改多个列表项

L = ['a', 'b', 'c', 'd', 'e']
L[1:4] = [1, 2, 3]
print(L)    # ['a', 1, 2, 3, 'e']
['a', 1, 2, 3, 'e']

Example: 替换多个元件以代替单个元件

L = ['a', 'b', 'c', 'd', 'e']
L[1:2] = [1, 2, 3]
print(L)    # ['a', 1, 2, 3, 'c', 'd', 'e']
['a', 1, 2, 3, 'c', 'd', 'e']

十、插入多个列表元素

我们可以在列表中插入项目,而无需替换任何内容。只需指定

Example: 使用slice插入多个列表项

L = ['a', 'b', 'c']
L[:0] = [1, 2, 3]
print(L)    # [1, 2, 3, 'a', 'b', 'c']
[1, 2, 3, 'a', 'b', 'c']
L = ['a', 'b', 'c']
L[len(L):] = [1, 2, 3]
print(L)    # ['a', 'b', 'c', 1, 2, 3]
['a', 'b', 'c', 1, 2, 3]

可以通过指定切片的开始索引和停止索引将元素插入到列表的中间。

Example:在中间插入多个列表项

L = ['a', 'b', 'c']
L[1:1] = [1, 2, 3]
print(L)    # ['a', 1, 2, 3, 'b', 'c']
['a', 1, 2, 3, 'b', 'c']

十一、删除多个列表元素

可以通过将适当的切片赋值给空列表来删除列表中间的多个元素。

也可以将del语句用于切片。

Example: 使用slice删除多个列表项

L = ['a', 'b', 'c', 'd', 'e']
L[1:5] = []
print(L)    # ['a']
['a']
with del keyword
L = ['a', 'b', 'c', 'd', 'e']
del L[1:5]
print(L)    # ['a']
['a']

十二、克隆或复制列表

当执行new_List = old_List时,实际上没有两个列表。 赋值仅将引用复制到列表,而不是实际列表。 因此,赋值后new_List和old_List都引用相同的列表。

可以使用切片运算符复制列表(也称为浅拷贝)。

Example: 使用slice创建列表的副本(浅拷贝)

L1 = ['a', 'b', 'c', 'd', 'e']
L2 = L1[:]
print(L2)       # ['a', 'b', 'c', 'd', 'e']
print(L2 is L1) # False
['a', 'b', 'c', 'd', 'e']
False

来源:https://blog.csdn.net/bai666ai/article/details/123024601

标签:Python,列表,切片
0
投稿

猜你喜欢

  • 在python中使用正则表达式查找可嵌套字符串组

    2021-10-07 07:02:06
  • Python urllib.request对象案例解析

    2022-04-14 22:24:43
  • 用CSS设置表格Table的细边框的比较好用的方法

    2010-09-06 14:58:00
  • Python实现aes加密解密多种方法解析

    2021-05-13 01:36:53
  • Django model反向关联名称的方法

    2021-03-06 17:21:28
  • Django 限制用户访问频率的中间件的实现

    2023-12-17 20:19:19
  • MSSQL 2000 使用帮助(sql server简明教程)

    2024-01-22 06:17:34
  • 升级SQL Server 2014的四个要点要注意

    2024-01-18 09:58:01
  • python 搭建简单的http server,可直接post文件的实例

    2021-08-25 15:07:39
  • 慎用 script 节点的 src 属性来传递参数

    2009-11-18 12:59:00
  • Django的restframework接口框架自定义返回数据格式的示例详解

    2023-06-13 05:13:51
  • 详解vue的diff算法原理

    2023-07-02 16:49:44
  • nvm版本导致npm install报错Unexpected token '.'的解决办法

    2024-05-05 09:21:04
  • 使用OpenCV circle函数图像上画圆的示例代码

    2021-03-12 17:30:41
  • 在ASP.NET 2.0中操作数据之十四:使用FormView 的模板

    2024-03-23 16:07:32
  • 数据库中两张表之间的数据同步增加、删除与更新实现思路

    2024-01-21 18:50:24
  • python自定义线程池控制线程数量的示例

    2022-12-25 15:16:13
  • Python网络编程 Python套接字编程

    2022-06-09 09:41:32
  • js图片水平翻转后垂直翻反转的特效代码

    2009-03-06 15:33:00
  • python批量处理打开多个文件

    2022-10-21 05:26:47
  • asp之家 网络编程 m.aspxhome.com