Como adicionar três condições no NP. Em lugar do 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