回答編集履歴
1
追記
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
複数の方法で書いてみました。
|
2
2
|
|
3
3
|
```python3
|
4
4
|
data = {
|
@@ -28,5 +28,9 @@
|
|
28
28
|
|
29
29
|
print("------")
|
30
30
|
list(map(lambda x: print(x[0], x[1]), data.items()))
|
31
|
+
|
32
|
+
print("------")
|
33
|
+
for x in str(data)[1:-1].split(","):
|
34
|
+
print(x.replace("'", "").replace(": ", " ").strip())
|
31
35
|
```
|
32
36
|
|