I have a NumPy array that looks like this:
arr = np.array([100.10, 200.42, 4.14, 89.00, 34.55, 1.12])
How can I get multiple values from th
you were close
>>> print arr[[1,4,5]] [ 200.42 34.55 1.12]