Iterate python kwargs
python
def function(**kwargs):
for key, value in kwargs.items():
print(key, '==>', value)