Join strings - very simple Q.

Daniel Nogradi nogradi at gmail.com
Fri Mar 23 15:12:35 EDT 2007


> > I was told in this NG that string is obsolet. I should use
> > str methods.
> >
> > So, how do I join a list of strings delimited by a given
> > char, let's say ','?
> >
> > Old way:
> >
> > l=['a','b','c']
> > jl=string.join(l,',')
> >
> > New way?
>
> Dunno if it's the "new way", but you can do: ''.join(l)

The OP wants the strings to be comma delimited:

jl=','.join(l)



More information about the Python-list mailing list