Mencetak Nilai Kamus Python

#print keys and values from the dictionary

for k, v in dic.items():
  print(k, v)
Relieved Raccoon