回答編集履歴

2

誤字修正 2回目 たびたび申し訳ございません。

2021/01/16 11:52

投稿

_whitecat_22
_whitecat_22

スコア1305

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:` と、`newfile=''` とすると良いです。
3
+ `with open('data.csv', 'w', newline='') as file:` と、`newline=''` とすると良いです。
4
4
 
5
5
 
6
6
 

1

誤字修正

2021/01/16 11:52

投稿

_whitecat_22
_whitecat_22

スコア1305

test CHANGED
@@ -14,8 +14,8 @@
14
14
 
15
15
  writer = csv.writer(file, lineterminator='\n')
16
16
 
17
- writer.writerow(l)
17
+ for row in zip(l, t):
18
18
 
19
- writer.writerow(t)
19
+ writer.writerow(row)
20
20
 
21
21
  ```