Last active 1715843182

q23.py Raw
1# Using NumPy, write a program to create multidimensional array, load it with the numbers and display the content of it.
2
3import numpy as np
4
5arr = np.array([[1, 2, 3], [4, 5, 6]])
6print(arr)
7