Never been to DZone Snippets before?

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 (See related posts)

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 on this post

pnormand posts on Sep 02, 2005 at 06:31
One variant:

def textList(listtext, sep1=', ', sep2=', and '):
   return sep1.join(listtext[:-2]+['']) + sep2.join(listtext[-2:])

You need to create an account or log in to post comments to this site.


Click here to browse all 4861 code snippets

Related Posts