Given the following function:
def foo(a, b, c): pass
How would one obtain a list/tuple/dict/etc of the arguments passed in, wit
You can create a list out of them using:
args = [a, b, c]
You can easily create a tuple out of them using:
args = (a, b, c)