course content

Course Content

NumPy in a Nutshell

Challenge: Match the IndicesChallenge: Match the Indices
question-icon

You have the following one-dimensional array: arr = np.array([3, 2, 25, 54, 9, -10, 36, 13]). Match the correct indices that can be used to get those elements. Here we have to use only negative indexes.


arr[-2] -
___

arr[-5] -
___

arr[-3] -
___

arr[-7] -
___

Click or drag`n`drop items and fill in the blanks

dots
2
dots
-10
dots
36
dots
54
down-icon

Section 3.

Chapter 6