Are you sure you're getting this? Fill in the missing part by typing it in.
What is the output of following code?
PYTHON
1d = {"Peter": 12}
2for i, j in d.items():
3 print(i, j)
Write the missing line below.
What is the output of following code?
1d = {"Peter": 12}
2for i, j in d.items():
3 print(i, j)
Write the missing line below.