Created
April 2, 2019 14:09
-
-
Save serhii73/cb9592120e250e7379fa7ab3f0d54193 to your computer and use it in GitHub Desktop.
Пример чтения csv файла:
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(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