回答編集履歴

2

追記

2020/05/15 04:13

投稿

jeanbiego
jeanbiego

スコア3966

test CHANGED
@@ -23,3 +23,29 @@
23
23
  # 12345678
24
24
 
25
25
  ```
26
+
27
+
28
+
29
+ ```python
30
+
31
+ a = "[{'test': 'AND', 'children': [{'test3': 'value', 'test2': [12345678]}]}]"
32
+
33
+ exec("a="+a)
34
+
35
+ print(a)
36
+
37
+ # [{'test': 'AND', 'children': [{'test3': 'value', 'test2': [12345678]}]}]
38
+
39
+ print(a[0]['test'])
40
+
41
+ # AND
42
+
43
+ print(a[0]['children'][0]['test3'])
44
+
45
+ # value
46
+
47
+ print(a[0]['children'][0]['test2'][0])
48
+
49
+ # 12345678
50
+
51
+ ```

1

追記

2020/05/15 04:13

投稿

jeanbiego
jeanbiego

スコア3966

test CHANGED
@@ -1,6 +1,6 @@
1
- listの中にあるものは[]の中に数を、
1
+ listの中にあるものは[]の中にindex(整)を、
2
2
 
3
- dictの中にあるもの[]の中にkeyを入れて
3
+ dictの中にあるもの[]の中にkey(文字列)を入れて
4
4
 
5
5
  というのを繰り返せば取れます。
6
6