アットウィキロゴ

かぶかぶ

f = open('data.csv', 'r',encoding='UTF-8')
 
x=[] 
for line in f:
    x.append(line)
 
f.close()
 
print(x[0])
最終更新:2018年05月20日 12:49