I do have a list as given below -
keyList1 = ["Person", "Male", "Boy", "Student", "id_123", "Name"]
value1 = "Roger"
How can I generate dynamic dictionary which can be retrieved as below -
mydict["Person"]["Male"]["Boy"]["Student"]["id_123"]["Name"] = value
The list could be anything; Variable Length or consisting of "N" number of elements unknown to me...
Now I do have another list, so that My dictionary should be updated accordingly
keyList2 = ["Person", "Male", "Boy", "Student", "id_123", "Age"]
value2 = 25
i.e. If Keys "Person", "Male", "Boy", "Student", "id_123" already exists, the new key "age" should be appended ...