When \"deconstructing\" a tuple, I can use _ to denote tuple elements I\'m not interested in, e.g.
_
>>> a,_,_ = (1,2,3) >>> a 1
If you have both args and keyword arg you should use
def f(a, *args, **kwargs): return a