Example & Tutorial understanding programming in easy ways.

What does the **Kwargs do in Python?


Example :


def func(**arg):

    print(arg) // it will print the dictionary 

func(Amit=25,John=30)

Read More →