コンテンツにスキップ

python csv操作#

https://docs.python.org/ja/3/library/csv.html

import csv

with open('filepath/sample.csv') as f:
    reader = csv.reader(f)
    for row in reader:
        print(row)
        ## 行単位でリストで返される
        ## ['21', '22', '23', '24']

References#

Tags#

  • #python