Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
import numpy as np a = np.array([[0, 1, 2], [0, 2, 4], [0, 3, 6]]) # If an element of a is less than 4 → keep it # Otherwise → replace it with -1 print(np.where(a < 4, a, -1)) ''' run: [[ 0 1 2] [ 0 2 -1] [ 0 3 -1]] '''