I have a 2 dimensional numpy array:
a=np.array([[1,2,3],
[4,5,6,7],
[2,3,4]])
How can i efficiently remove the element(row), which contains more than 3 elements(columns), without knowledge about its position?
a=np.array([[1,2,3],
[2,3,4]])
"Remove all rows which are longer than 3."
dtype=object.a * 2, for example, ora[:,1].