回答編集履歴
1
バグ修正
test
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
```python
|
4
4
|
for line in f:
|
5
|
-
cols =
|
5
|
+
cols = line.strip().split(',')
|
6
6
|
outfile.write(f'{cols[0]},{cols[2]},\n')
|
7
7
|
```
|
8
8
|
|