I have this array:
[[0, 1, 0, 1, 0, 1],
[0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 1, 0],
[1, 0, 1, 0, 1, 0],
[0, 1, 1, 1, 0, 1],
[0, 1, 0, 0, 1, 1],
[1, 1, 1, 0, 0, 0],
[1, 1, 1, 1, 0, 1],
[0, 1, 1, 0, 1, 0],
[1, 1, 0, 0, 0, 1],
[1, 0, 0, 0, 1, 0]]
I wish to create a new array, that will be only the rows that has 0 in column 1.
How can I build such array in python without writing up the function by myself. I have tried too complicated stuff and I just need simple selection method that gives me result.
@EDIT I forgot to mention that i am using numpy.array([])