Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active June 9, 2016 08:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/7ecd16e59ff5d3e0a453f059d91d6057 to your computer and use it in GitHub Desktop.
Save kurozumi/7ecd16e59ff5d3e0a453f059d91d6057 to your computer and use it in GitHub Desktop.
【Python】CSVを読み込むジェネレータ関数
def csv_reader(file, header=False):
import csv
with open(file, "r") as f:
reader = csv.reader(f)
if header
next(reader)
for row in reader:
yield row
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment