用途
新着
履歴
分類

python CSV読み込み

python CSV読み込み

pythonでCSVの読み込みをする際のサンプル。

import csv

with open('csv/data.csv', 'r') as f:
    list = csv.reader(f)

    for row in list:
        print row

エクセルなどの場合一行目はデータ名の場合があるので、一行目を飛ばす場合。

import csv

with open('csv/data.csv', 'r') as f:
    list = csv.reader(f)
    header = next(list)  

    for row in list:
        print row
公開 2019-08-07 20:31:07
このページの二次元コード
python CSV読み込み

人気のサンプル

search -  category -  about
© 2024 kipure
Top