Created
March 26, 2017 17:12
-
-
Save serhii73/971abcc16b0043b94a13f70ca69c0291 to your computer and use it in GitHub Desktop.
python csv list data pandas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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