I have read some documentation about python, but no examples on how could you can extract Keys from a double dictionary.
To understand better here is an example:
Let's say we have the following dictionary:
{'AAA': {'KEY1':'text1', 'KEY2':'text2', 'KEY3:' 'text3', 'KEY4': 'text4'},
'BBB': {'BBB1':{'KEY1':'text1', 'KEY2':'text2', 'KEY3:' 'text3', 'KEY4': 'text4'},
'BBB2':{'KEY1':'text1', 'KEY2':'text2', 'KEY3:' 'text3', 'KEY4': 'text4'},
'BBB3':{'KEY1':'text1', 'KEY2':'text2', 'KEY3:' 'text3', 'KEY4': 'text4'}}}
How can i extract KEY1, KEY2 and KEY 4 from AAA and KEY3 KEY4 from BBB1, BBB2, BBB3 in BBB?