回答編集履歴
1
print関数のformat内の表記を修正
answer
CHANGED
@@ -3,6 +3,6 @@
|
|
3
3
|
|
4
4
|
```python
|
5
5
|
for t in kesu:
|
6
|
-
print("remove:{0}".format(
|
6
|
+
print("remove:{0}".format(t))
|
7
7
|
os.remove(t)
|
8
8
|
```
|