回答編集履歴
1
コードの誤りを修正しました
answer
CHANGED
@@ -16,7 +16,6 @@
|
|
16
16
|
with open('color.csv', 'a+', newline='') as csv_file:
|
17
17
|
writer = csv.writer(csv_file)
|
18
18
|
writer.writerow(i)
|
19
|
-
csv_file.close()
|
20
19
|
print(i + "ファイル投入完了")
|
21
20
|
time.sleep(3)
|
22
21
|
|