Contact: aviboots(AT)netvision.net.il
39,868 questions
51,791 answers
573 users
import numpy as np arr = np.array([1, 1, 2, 3, 1, 0, 0, 4, 5, 1, 7, 8, 1, 5, 1, 1, 1]) indices = np.where(arr==1)[0] print(indices) ''' run: [ 0 1 4 9 12 14 15 16] '''