python nest dict how to print only keys code example
Example: print nested dictionary values in python
for account in bank_dictionary:
print("\n ACCOUNT: ", account)
for subaccount in bank_dictionary[account]:
print("\n Subaccount: ", subaccount)