回答編集履歴
2
追記
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
追記
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
|
|