回答編集履歴
1
修正
answer
CHANGED
@@ -9,10 +9,13 @@
|
|
9
9
|
|
10
10
|
|
11
11
|
```
|
12
|
+
ret=[]
|
12
13
|
for line in open("df.csv", mode="r", encoding="utf-8"):
|
13
14
|
section = line.split(",", 1)
|
14
15
|
if section[1] == 'columns\n':
|
15
16
|
continue
|
16
|
-
|
17
|
+
ret.append(eval(section[1].strip("\"\n").strip("\")))
|
18
|
+
|
17
|
-
|
19
|
+
for r in ret:
|
20
|
+
print(r)
|
18
21
|
```
|