I'm fairly new to Python and I'm struggling with nested dictionaries. Consider this dictionary of dictionaries:
dict=[{'Item 1': {'A': 106,
  'B': 77,
  'C': 46,
  'D': 36},
 'Item 2': {'E': 1141,
  'F': 1065,
  'G': 1020}}]
I would like to list the keys and then the count of the nested dictionary keys. So like this:
Item 1: 4
Item 2: 3
Thank you!
 
     
     
    