fetch columne one by one from csv file python particlular name code example
Example: get a column of a csv python
df = pd.read_csv("sample_file.csv", usecols=["name_of_col1", "name_of_col2"])
df = pd.read_csv("sample_file.csv", usecols=["name_of_col1", "name_of_col2"])