Python slice() 函数



Python slice() 函数返回一个切片对象,该对象可用于切片序列,例如列表、元组、字符串等。此函数有助于执行多项操作,包括从给定字符串中查找子字符串和从集合中提取子部分。

slice() 函数是内置函数之一,通常用于切片序列。术语 切片 被定义为提取指定序列对象的某个部分的过程。

语法

以下是 Python slice() 函数的语法 -


 slice(start, end, step)

参数

Python slice() 函数接受三个参数,所有这些参数都是可选的 -

  • start − 此参数接受一个整数值,该值表示我们需要开始切片的位置。其默认值为 0。
  • end − 它还接受一个整数值,表示切片的结束位置。
  • step − 它指定切片索引之间所需的增量。默认值为 1。

返回值

Python slice() 函数返回一个新的切片对象。

slice() 函数示例

练习以下示例来理解 Python 中 slice() 函数的使用:

示例:使用 slice() 函数

以下示例显示了 Python slice() 函数的用法。在这里,我们定义了一个字符串并尝试使用 slice() 函数提取其子字符串。


orgnlStr = "Simply Easy Learning Qikepu Com"
subStr = orgnlStr[slice(21, 36)]
print("Printing the sub-string of the given string:", subStr)

当我们运行上述程序时,它会产生以下结果——

Printing the sub-string of the given string: Qikepu Com

示例:使用 slice() 函数对列表进行切片

可以通过传递 start 、 end 和 step 参数来完成切片,这允许用户以特定的增量获取从起始索引到结束索引的列表部分。在下面的代码中,我们以 2 位的增量访问从第二个索引到第六个索引的列表项。


orgnList = [22, 44, 66, 88, 108, 118]
newSlicedList = orgnList[slice(2, 6, 2)]
print("Printing the newly sliced list:", newSlicedList)

以下是上述代码的输出 -

Printing the newly sliced list: [66, 108]

示例:使用 slice() 函数对元组进行切片

由于元组也是一个序列对象,我们可以将 slice() 函数与元组一起使用,如下面的代码所示。


orgnlTup = ("Simply", "Easy", "Learning", "Qikepu", "Com")
newSlicedTup = orgnlTup[slice(0, 3)]
print("Printing the newly sliced tuple:")
print(newSlicedTup)

上述代码的输出如下 -

Printing the newly sliced tuple:
('Simply', 'Easy', 'Learning')

示例:使用 slice() 函数进行负切片

如果我们向 slice() 函数传递一个负索引号,则索引将从序列的末尾开始计数,这允许我们以相反的顺序对序列进行切片。下面的代码说明了如何反转给定的字符串。


orgnlStr = "QikepuCom"
newRevStr = orgnlStr[slice(None, None, -1)]
print("Printing the string in reverse order:")
print(newRevStr)

以下是上述代码的输出 -

Printing the string in reverse order:
mocupekiQ