here is my array, i tried some slicing operation
But it did not work
can someone tell me how to do that?
type is numpy.ndarray
x=[[10 34]
[34 45]
[12 12]
[12 34]
[23 23]]
I want to get a output like this -:
x=[10 34
34 45
12 12
12 34
23 23]
if