On Dec 21, 5:59 pm, Jean-Paul Calderone <exar... at divmod.com> wrote: >You just need to turn things around: > >>> def foo(a, b, c): > ... return a, b, c > ... > >>> args = range(2) > >>> foo(c=2, *args) > (0, 1, 2) > >>> You know, I feel like a real shmuck for not trying that... Thanks! -Sandra