return a dictionary with both keys and values 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)