get a column of a csv python

Solutions on MaxInterview for get a column of a csv python by the best coders in the world

showing results for - "get a column of a csv python"
Kilyan
01 Jan 2017
1df = pd.read_csv("sample_file.csv", usecols=["name_of_col1", "name_of_col2"])