Comment ajouter trois conditions dans NP.Where dans Pandas DataFrame

import numpy as np
idx = np.where((df['Salary_in_1000']>=100) & (df['Age']< 60) & (df['FT_Team'].str.startswith('S')))
Blue-eyed Barracuda