Home > Coding Fundamentals Refresher > Coding Fundamentals and Patterns > Dictionaries and Key-Value Stores Show previous contentAre you sure you're getting this? Fill in the missing part by typing it in.What is the output of following code?PYTHON1d = {"Peter": 12} 2for i, j in d.items(): 3 print(i, j)Write the missing line below.SubmitReveal answer Show following content