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 define and use a function that accept dynamic number of key value pair arguments in Python

1 Answer

0 votes
def key_value(**kwargs):
    print(kwargs)

    for key, value in kwargs.items() :
        print(key , ":", value)

  
key_value(worker="Tom", number="9846713", salary=12347)
print()
key_value(language="Python", version="3.7.4")




'''
run:

{'worker': 'Tom', 'number': '9846713', 'salary': 12347}
worker : Tom
number : 9846713
salary : 12347

{'language': 'Python', 'version': '3.7.4'}
language : Python
version : 3.7.4

'''

 



answered Jan 31, 2020 by avibootz
...