回答編集履歴
4
f
answer
CHANGED
File without changes
|
3
f
answer
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
b = dic[0]['schema']
|
14
14
|
c = json.loads(b)
|
15
|
-
print(type(c)
|
15
|
+
print(type(c))
|
16
16
|
print(c[0])
|
17
17
|
```
|
18
18
|
実行結果
|
2
f
answer
CHANGED
File without changes
|
1
f
answer
CHANGED
@@ -12,5 +12,11 @@
|
|
12
12
|
|
13
13
|
b = dic[0]['schema']
|
14
14
|
c = json.loads(b)
|
15
|
+
print(type(c)
|
15
16
|
print(c[0])
|
17
|
+
```
|
18
|
+
実行結果
|
19
|
+
```
|
20
|
+
<type 'list'>
|
21
|
+
[u'a', u'aaa']
|
16
22
|
```
|