show/hide this revision's text 2 added 168 characters in body

This will also work

import operator

My favorite, and the shortest one, is this:

li2 = reduce(lisum(li, operator.add[])

and

s = ','.join(li2)

EDIT: use sum instead of reduce, (thanks Thomas Wouters!)

show/hide this revision's text 1

This will also work

import operator
li2 = reduce(li, operator.add)