On Thu, 2006-04-27 at 10:08 -0700, Aahz wrote:

> While I hate the way it looks, I never have gotten mixed up about the
> order of arguments since switching to ''.join(l).

Which is why

EMPTYSTRING = ''

...

EMPTYSTRING.join(seq)

looks much better.  But hey, yeah, a join() builtin would be fine if it
took the string arg first, so that

''.join(seq) == join('', seq)

-Barry

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: 
http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com

Reply via email to