I want to display output in terms of keys: values
as:
dad:bob
Mom:lisa
brother : joe
& so on
But only values are shown in the output.
what changes should I make in this code to get the desired output?
d = dict(Dad='Bob', Mom='Lisa', Brother= 'joe')
def f2(Dad,Mom,Brother):
print Dad,Mom,Brother
f2(**d)