[2D ARRAY] Input from user in numpy Two Dimensional Array using for Loop in Python

from numpy import * # Taking input in 2D Array using numpy and for loop k= int ( input ( "Enter no of Rows \t " )) s= int ( input ( "Enter no of coloumn \t " )) ma=zeros((k , s) , dtype = int ) u= len (ma) print (u) print (ma) for i in range (u): for j in range ( len (ma[i])): p= int ( input ( 'Enter elements \t ' )) ma[i][j]=p print (ma)