回答編集履歴
4
f
test
CHANGED
File without changes
|
3
f
test
CHANGED
@@ -26,7 +26,7 @@
|
|
26
26
|
|
27
27
|
c = json.loads(b)
|
28
28
|
|
29
|
-
print(type(c)
|
29
|
+
print(type(c))
|
30
30
|
|
31
31
|
print(c[0])
|
32
32
|
|
2
f
test
CHANGED
File without changes
|
1
f
test
CHANGED
@@ -26,6 +26,18 @@
|
|
26
26
|
|
27
27
|
c = json.loads(b)
|
28
28
|
|
29
|
+
print(type(c)
|
30
|
+
|
29
31
|
print(c[0])
|
30
32
|
|
31
33
|
```
|
34
|
+
|
35
|
+
実行結果
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
<type 'list'>
|
40
|
+
|
41
|
+
[u'a', u'aaa']
|
42
|
+
|
43
|
+
```
|