Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 answers
573 users
def print_dictionary(**values): for key in values: print(key, "=", values[key]) print_dictionary(a="python", b="c", c="c++", d="java") ''' run: b = c a = python c = c++ d = java '''
def print_dictionary(**values): for key in values: print(key, "=", values[key]) print_dictionary(a=1, b=8, c=34, d=2) ''' run: c = 34 b = 8 a = 1 d = 2 '''