python_numpy_array_filter_1.py:
x
 
import numpy as np
arr = np.array([61, 62, 63, 64, 65])
x = arr[[True, False, True, False, True]]
print(x)