Curriculum
Course: NumPy
Login

Curriculum

NumPy

Text lesson

NumPy Array Slicing

Slicing arrays

In Python, slicing refers to retrieving elements from a specified starting index to an ending index. We use a slice notation like this: [start:end].

Additionally, we can define a step using the format: [start:end:step].

If the start value is omitted, it defaults to 0, while omitting the end value defaults to the length of the array in that dimension. If the step value is not provided, it defaults to 1.

Example

Retrieve the elements from index 1 to index 5 from the following array.

import numpy as np

arr = np.array([1234567])

print(arr[1:5])
Note: The result includes the starting index but excludes the ending index.

Example

Retrieve the elements from index 4 to the end of the array.

import numpy as np

arr = np.array([1234567])

print(arr[4:])

Example

Retrieve the elements from the beginning up to index 4 (excluding index 4).

import numpy as np

arr = np.array([1234567])

print(arr[:4])