get key value pair py code example
Example: printing python dictionary values
#print keys and values from the dictionary
for k, v in dic.items():
print(k, v)
#print keys and values from the dictionary
for k, v in dic.items():
print(k, v)