Skip to content

Instantly share code, notes, and snippets.

@serhii73
Created March 26, 2017 17:12
Show Gist options
  • Save serhii73/971abcc16b0043b94a13f70ca69c0291 to your computer and use it in GitHub Desktop.
Save serhii73/971abcc16b0043b94a13f70ca69c0291 to your computer and use it in GitHub Desktop.
python csv list data pandas
import pandas
data = pandas.read_csv("test.csv", header=0)
col_a = list(data.a)
col_b = list(data.b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment