Is it possible to iterate args and kwargs at one time? Something like
def func(*args, **kwargs): for i, t in args, kwargs: print(i, t)