I have a list within a dictionary within a dictionary:
{FirmA:{ProductA:[Color1,Color2,Color3]}}
I want to build a list of keys from the First Firm dictionary level.
Then, I need to access the second level Product dictionary based on a Firm Key.
Finally, I will need to access the Colors list based on the Product key from Dictionary level 2 (Products).
I tried to get the level 1 keys for Firms:
[i for i in dict.keys()]
Returns
ValueError: Too many values to unpack
This is a fairly large data set.
I have not been able to get to the 2nd level dictionary yet.