how to select rows with specific values in pandas code example
Example 1: only keep rows of a dataframe based on a column value
df.loc[df['column_name'] == some_value]
Example 2: select specific rows from dataframe in python
select_color = df.loc[df['Color'] == 'Green']
Example 3: pandas return specific row
df.iloc[1] # replace index integer with specific row number