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)
-tkc
--
http://mail.python.org/mailman/listinfo/python-list
