回答編集履歴

4

2020/09/02 08:31

投稿

sfdust
sfdust

スコア1137

test CHANGED
File without changes

3

2020/09/02 08:31

投稿

sfdust
sfdust

スコア1137

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

2020/09/02 08:31

投稿

sfdust
sfdust

スコア1137

test CHANGED
File without changes

1

2020/09/02 08:30

投稿

sfdust
sfdust

スコア1137

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
+ ```