astpath
astpath copied to clipboard
Using ASTpath to access internal data structure key/value (dictionary)
a = None
b = 5
c = {'f': 6, 'g': {'i': {'l': 10}}}
In Python, I can just:
print(c['g']['i']['l'])
How do I do equivalent with ASTpath?
Thanks