selecting specific rows in pandas df based on col value code example
Example 1: how to select rows based on column value pandas
df.loc[df['column_name'] == some_value]
Example 2: select specific rows from dataframe in python
select_color = df.loc[df['Color'] == 'Green']