when i created numpy 2d array i can access individual elements by [row][column] but when i converted it into a matrix by np.mat() then why i cant access to the individual elements by [row][column]
a=np.array([[1,2,3],[4,5,6],[7,8,9]])
a=np.mat(a)
print(a[0])
print(a[0][0])
the output is
[1,2,3]
[1,2,3] for both why it is so