def kwargs_iterate(**kwargs): for i, k in kwargs.items(): print(i, '=', k) kwargs_iterate(hello='world')