On Thu, May 27, 2010 at 1:15 PM, Tim Chase <s...@thechases.com> wrote:
> On 05/27/2010 11:56 AM, MRAB wrote: > >> Kushal Kumaran wrote: >> >>> ', '.join('%s' * len(values))) >>> >> >> That should be: >> >> ', '.join(['%s'] * len(values))) >> > > Or as I've done in the past: > > ', '.join('%s' for _ in values) > Huh? Can you describe that underscore to me? Fascinating! beno > > > > -- > http://mail.python.org/mailman/listinfo/python-list >
-- http://mail.python.org/mailman/listinfo/python-list