How do I find how many rows and columns are in a 2d array?
For example,
Input = ([[1, 2], [3, 4], [5, 6]])`
should be displaye
You can also use np.size(a,1), 1 here is the axis and this will give you the number of columns