回答編集履歴
2
誤字修正 2回目 たびたび申し訳ございません。
test
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
yukkeorg さんの回答の通りですが、お使いの環境が Windows でしたら特に、公式ドキュメント:[https://docs.python.org/ja/3/library/csv.html?highlight=newline](https://docs.python.org/ja/3/library/csv.html?highlight=newline) にもありますように、
|
2
2
|
|
3
|
-
`with open('data.csv', 'w', newline='') as file:` と、`new
|
3
|
+
`with open('data.csv', 'w', newline='') as file:` と、`newline=''` とすると良いです。
|
4
4
|
|
5
5
|
|
6
6
|
|
1
誤字修正
test
CHANGED
@@ -14,8 +14,8 @@
|
|
14
14
|
|
15
15
|
writer = csv.writer(file, lineterminator='\n')
|
16
16
|
|
17
|
-
|
17
|
+
for row in zip(l, t):
|
18
18
|
|
19
|
-
writer.writerow(
|
19
|
+
writer.writerow(row)
|
20
20
|
|
21
21
|
```
|