On Aug 21, 4:34 am, [EMAIL PROTECTED] wrote: > to concatenate 2 lists to each other before it does the join, ... is > impossible in Python. The "+" operator is only for addition and for > two or more strings.
Really? >>> [1,2,3] + [4,5,6] [1, 2, 3, 4, 5, 6] -- http://mail.python.org/mailman/listinfo/python-list