回答編集履歴

1

修正

2018/05/30 08:07

投稿

LouiS0616
LouiS0616

スコア35660

test CHANGED
@@ -16,11 +16,13 @@
16
16
 
17
17
  pprint(lst)
18
18
 
19
+ print(type(lst), type(lst[0]))
20
+
19
21
  ```
20
22
 
21
23
 
22
24
 
23
- **実行結果** [Wandbox](https://wandbox.org/permlink/l84xQ2OmOXBCo3xh)
25
+ **実行結果** [Wandbox](https://wandbox.org/permlink/6jvF7NQdu3iuy72y)
24
26
 
25
27
  ```plain
26
28
 
@@ -30,4 +32,6 @@
30
32
 
31
33
  {'age': '21', 'id': '2', 'name': 'Ken'}]
32
34
 
35
+ <class 'list'> <class 'dict'>
36
+
33
37
  ```