On Sat, Aug 6, 2011 at 7:21 PM, bud <only at fleshwound.org> wrote: > Nice. :) I forgot about zip, still learning Python myself. > > I'll have to check up on the *L - is that a reference? > I It expands the list into the arguments. It's the parallel to: def func(*args): which collapses the args into a list. ChrisA