理解Python 的切片表示法
Python 的切片表示法提供了一種從字串清單、元組和等序列中提取元素子集的便捷方法。語法為:
a[start:stop] # items start through stop-1 a[start:] # items start through the rest of the array a[:stop] # items from the beginning through stop-1 a[:] # a copy of the whole array
要記住的關鍵方面是停止值表示切片中包含的第一個 不 值。因此,stop 和 start 之間的差異表示所選元素的數量(步長預設為 1)。
使用負值
接受負的開始或停止值,從序列的末端而不是開頭開始計數。例:
a[-1] # last item in the array a[-2:] # last two items in the array a[:-2] # everything except the last two items
也允許負步長值。例如:
a[::-1] # all items in the array, reversed a[1::-1] # the first two items, reversed a[:-3:-1] # the last two items, reversed a[-3::-1] # everything except the last two items, reversed
處理邊緣情況
Python 優雅地處理對序列之外的元素的請求。例如,如果您要求 a[:-2] 並且 a 僅包含一個元素,您將收到一個空列表而不是錯誤。
與切片物件的關係
切片運算可以用切片物件來表示:
a[start:stop:step]
這等價to:
a[slice(start, stop, step)]
切片物件可以與不同數量的參數一起使用,類似於range()。例如:
a[start:] = a[slice(start, None)] a[::-1] = a[slice(None, None, -1)]
結論
Python 的通用切片表示法提供了一種簡潔有效的方法來從序列中提取元素子集。理解這些概念對於在 Python 中有效處理資料至關重要。
以上是Python 的切片表示法如何用來擷取序列子集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!