How to Create a 2-D NumPy Array


In this example we will show how to create a 2-D NumPy array in Python.

Source Code

import numpy as np

n = np.array([[1, 2], [3, 4], [5, 6]])

print(n)

Output:

[[1 2]
 [3 4]
 [5 6]]
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments