Andrew Bennetts wrote: > Which could be spelt out as: > > for el in a: > r, l = el > print "R "+`r` > print "L "+`l` > > Does this make sense? Yes, now I got it. el is a tuple. My second loop did not make sense. Thanks! Martin