select rows of specific columns pandas code example
Example 1: python: select specific columns in a data frame
df = df[["Column_Name1", "Column_Name2"]]
Example 2: select specific rows from dataframe in python
select_color = df.loc[df['Color'] == 'Green']