markscottwright <markscottwri...@gmail.com> wrote:
> Thanks Jan (and all other responders).  I suppose I shouldn't be
> surprised - it's a known wart (http://wiki.python.org/moin/
> PythonWarts), but it just looks so darn wrong.

Don't forget that it's exceptionally easy to create your own mechanism
for doing this:

  def join(seq, sep):
     return sep.join(map(str, seq))
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to