Jump to

v12-l2-unpacking

What would be the correct way to call the doStuff function below ?

def doStuff(a, b, c=1, d=2):
    pass

args = [1, 2, 3]
params = {"c": 3, "d": 4}

???