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