What would be the correct way to call the doStuff function below ?
doStuff
def doStuff(a, b, c=1, d=2): pass args = [1, 2, 3] params = {"c": 3, "d": 4}
doStuff(args, params)
doStuff(*args, **params)
doStuff(*args[:-1], **params)
None of the proposed answers