Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to pass dictionary as argument to a function in Python

2 Answers

0 votes
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

'''

 



answered Oct 29, 2018 by avibootz
0 votes
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

'''

 



answered Oct 29, 2018 by avibootz

Related questions

1 answer 169 views
2 answers 177 views
1 answer 176 views
2 answers 128 views
...