If you just want the items concatenated with a comma separator, the
following is what you need:

>>> list_arr = ["one", "two", "three"]
>>> list = ",".join(list_arr)
>>> print(list)
one,two,three

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to