I want to copy every 2nd matrix element in Python.
For example:
arr1 = [[1, 2, 3, 4, 5],
[6, 7, 8, 9, 10],
[11, 12, 13, 14, 15]]
The desired array should be:
[2, 4]
[7, 9]
[12, 14]
What's the easiest way to accomplish that?