Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
1-D Arrays
course content

Course Content

NumPy in a Nutshell

1-D Arrays1-D Arrays

A one-dimensional array is a collection of elements, all of the same type, indexed by sequences of natural numbers.

Let's have a look at an example of creating a 1-D array:

Example

Note

We should use the np.array() function and enclose your 1-dimensional array in square brackets. For example: np.array([value1, value2, value3]).

question-icon

Select all options with the INCORRECT code for creating a 1-D array.

Select a few correct answers

Everything was clear?

Section 2. Chapter 1
some-alt