There is a dictionary of dictionaries:
a = {'a': {'b': {'c': {}}, 'd': {'e': {}}}} And there is a list / tappl:
f = ('a', 'b', 'c') #or ['a', 'b', 'c'] How can you implement the following indexing with the help of the same tapl:
a['a']['b']['c'] = 'here' print(a['a']['b']['c'] ) # -> 'here' help me please!
That is, we do not know what is in the dictionary and what is in the tapl. But we know for sure that there is exactly the way to the meaning we need in the tuple. And you need to be able to change the very dictionary (namely, the value)