[Python-Dev] Idea - place to put string functions and consts (original) (raw)

Guido van Rossum guido@python.org
Mon, 18 Mar 2002 15🔞09 -0500


> Me took, especially when it's spelled > > COMMA = ',' > ... > COMMA.join(['spam', 'eggs'])

This I've never liked.

Me too, especially when it's spelled

commajoin = ",".join ... commajoin(['spam', 'eggs'])

But this one's sweet!

--Guido van Rossum (home page: http://www.python.org/~guido/)