2a 2akwarg

Solutions on MaxInterview for 2a 2akwarg by the best coders in the world

showing results for - " 2a 2akwarg"
Gwendoline
04 May 2019
1# Python program to illustrate 
2# *kargs for variable number of keyword arguments
3 
4def myFun(**kwargs):
5    for key, value in kwargs.items():
6        print ("%s == %s" %(key, value))
7 
8# Driver code
9myFun(first ='Geeks', mid ='for', last='Geeks')   
10
similar questions
queries leading to this page
2a 2akwarg