「python入門」CSVファイルを読み込む方法

サンプル
for line in open('changfa.csv’, 'r’):
list = line[:-1].split(',’)
print list

Python

Posted by arkgame