Created
February 28, 2016 00:53
-
-
Save rawrgulmuffins/c9bd73ecd93274451cb0 to your computer and use it in GitHub Desktop.
Read from csv example
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
test | test2 | test3 | |
---|---|---|---|
test4 | test5 | test6 |
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 csv | |
with open("example.csv") as csv_handle: | |
example_reader = csv.reader(csv_handle) | |
for row in example_reader: | |
for item in row: | |
print(item) # prints individual element | |
print(row) # prints a list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment