cara menambahkan tiga kondisi di np.where di pandas dataaframe

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