真的很简单:
a[start:stop] # items start through stop-1a[start:] # items start through the rest of the arraya[:stop] # items from the beginning through stop-1a[:]# a copy of the whole array
还有一个step值,可以与以上任何一种一起使用:
a[start:stop:step] # start through not past stop, by step
要记住的关键点是,该
:stop值表示不在所选切片中的第一个值。所以,之间的差
stop和
start是选择的元素的数量(如果step是1,默认值)。
另一个功能是
start或
stop可能是负数,这意味着它从数组的末尾而不是开头开始计数。所以:
a[-1] # last item in the arraya[-2:] # last two items in the arraya[:-2] # everything except the last two items
同样,step可能为负数:
a[::-1] # all items in the array, reverseda[1::-1] # the first two items, reverseda[:-3:-1] # the last two items, reverseda[-3::-1] # everything except the last two items, reversed
如果项目数量少于您的要求,Python对程序员很友好。例如,如果您要求a[:-2]并a仅包含一个元素,则会得到一个空列表,而不是一个错误。有时您会更喜欢该错误,因此您必须意识到这种情况可能会发生。
与slice()
对象的关系
[]上面的代码中实际上将切片运算符与
slice()使用:符号的对象一起使用(仅在内有效[]),即:
a[start:stop:step]
等效于:
a[slice(start, stop, step)]
切片对象也表现略有不同,这取决于参数的个数,同样
range(),即两个
slice(stop)和
slice(start, stop[, step])支持。要跳过指定给定参数的操作,可以使用
None,例如
a[start:]等于
a[slice(start, None)]或
a[::-1]等于
a[slice(None, None, -1)]。
尽管:基于的符号对于简单切片非常有帮助,但是
slice()对象的显式使用简化了切片的程序生成。



