要在NumPy中創建切片,可以使用slice()函數或直接使用[start:stop:step]的語法。
例如,創建一個從0到9的切片:
import numpy as np
arr = np.arange(10)
sliced_arr = arr[2:8]
print(sliced_arr)
這將輸出:
[2 3 4 5 6 7]
另外,您也可以使用slice()函數來創建切片:
import numpy as np
arr = np.arange(10)
s = slice(2, 8)
sliced_arr = arr[s]
print(sliced_arr)
這也將輸出:
[2 3 4 5 6 7]