series pandas multiple conditions code example
Example: select rows with multiple conditions pandas query
df.query('Salary_in_1000 >= 100 & Age < 60 & FT_Team.str.startswith("S").values')
df.query('Salary_in_1000 >= 100 & Age < 60 & FT_Team.str.startswith("S").values')