i got a given dictionary - for instance: x = {'a': 1,'b': 2, 'c': 3} what i would like to do is sending all keys and values to some function. for instance: func1(a=1,b=2,c=3)
(for other dictionary y = {'z': 8,'x': 9, 'w': 11,'p': 88} the function call will be: func1(z=8,x=9,w=11,p=88))
is it possible?
Thank you.