def foo(a, b, c): return a + b + cpositionals = (1, 2)keywords = {'c': 3}foo(*positionals, **keywords)