Skip to content

Instantly share code, notes, and snippets.

@NickMirnov
Created December 10, 2013 12:22
Show Gist options
  • Save NickMirnov/7889786 to your computer and use it in GitHub Desktop.
Save NickMirnov/7889786 to your computer and use it in GitHub Desktop.
Работа с csv python
import csv
reader = csv.reader(open("some.csv", "rb"))
for row in reader:
print row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment