Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Get One Dimensional Array Using Only Negative Indexes | Indexing and Slicing
NumPy in a Nutshell
course content

Course Content

NumPy in a Nutshell

NumPy in a Nutshell

1. Getting Started with NumPy
2. Dimensions in Arrays
3. Indexing and Slicing
4. Important Functions

bookGet One Dimensional Array Using Only Negative Indexes

You have the following array: `arr = [54, 23, 1, 76, 8, 45, 10, 3]`. Your task is to obtain an array `[76, 8, 45]` using array slicing. However, you should only use negative indices.

You have the following array: arr = [54, 23, 1, 76, 8, 45, 10, 3]. Your task is to obtain an array [76, 8, 45] using array slicing. However, you should only use negative indices.

Select the correct answer

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 3. Chapter 8
some-alt