Create more than one dimensions array using Numpy. For data science using Python in Anaconda - Jupyter

import numpy as np
data = np.array([[1,2,3,4,5,6],[6,5,4,3,2,1]])
print(data)


Output:-
[[1 2 3 4 5 6] [6 5 4 3 2 1]]