DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Python Comma Separated
Separate a list of string in english-language list fashion, just like the Ruby snippet listed earlier.
def textList(listtext, sep1=', ', sep2=', and '):
return (len(listtext) > 1
and ("%s%s%s" % (sep1.join(listtext[:-1]), sep2, listtext[-1]))
or listtext[0])
['one'] -> "one" ['one', 'two', 'three'] -> "one, two, and three"






Comments
Snippets Manager replied on Mon, 2012/05/07 - 2:14pm
def textList(listtext, sep1=', ', sep2=', and '): return sep1.join(listtext[:-2]+['']) + sep2.join(listtext[-2:])