I have an array of tuples (from prev processing of a structured array, but the filed info was lost).
>>> arr
[(0.109, 0.5), (0.109, 0.55), (0.109, 0.6)]
>>>
I need to extract the column vectors for first and second column.
Using two indices with fixed values works OK, but wildcarding the row fails.
>>> arr[0][1]
0.5
>>> arr[*][1]
File "<stdin>", line 1
arr[*][1]
^
SyntaxError: invalid syntax
>>>
Your feedback is appreciated.