selecting rows with specific values in pandas code example
Example 1: panda select rows where column value inferior to
df.loc[df['column_name'] == some_value]
Example 2: select specific rows from dataframe in python
select_color = df.loc[df['Color'] == 'Green']