Skip to content

Instantly share code, notes, and snippets.

@serhii73
Created April 2, 2019 14:09
Show Gist options
  • Save serhii73/cb9592120e250e7379fa7ab3f0d54193 to your computer and use it in GitHub Desktop.
Save serhii73/cb9592120e250e7379fa7ab3f0d54193 to your computer and use it in GitHub Desktop.
Пример чтения csv файла:
import csv
with open(csv_filename) as csv_fd:
reader = csv.reader(csv_fd, delimiter=';')
next(reader) # пропускаем заголовок
for row in reader:
print(row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment