Iterate python kwargs python Copy 1 2 3def function(**kwargs): for key, value in kwargs.items(): print(key, '==>', value) Share this: