Given NumPy array A, return an array that consists of every entry of A that has an even row index and an odd column index. code example
Example: display array of odd rows and even columns in numpy
>>> x[:, 1::2]
array([[ 2, 4],
[ 7, 9],
[12, 14],
[17, 19]])