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"
11388 users tagging and storing useful source code snippets
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
def textList(listtext, sep1=', ', sep2=', and '): return (len(listtext) > 1 and ("%s%s%s" % (sep1.join(listtext[:-1]), sep2, listtext[-1])) or listtext[0])
You need to create an account or log in to post comments to this site.