a = {'b':'boy','c':'cat','d':'dog'}print(a)for key,value in a.items(): print(f'\nKey:{key}') print(f'Vaule:{value}')