how to add three conditions in np where in pandas dataframe

Solutions on MaxInterview for how to add three conditions in np where in pandas dataframe by the best coders in the world

showing results for - "how to add three conditions in np where in pandas dataframe"
Muhammed
16 Mar 2016
1import numpy as np
2idx = np.where((df['Salary_in_1000']>=100) & (df['Age']< 60) & (df['FT_Team'].str.startswith('S')))
3