>>> list_array = ['aaa','bbb','ccc']
>>> for item in list_array:
...     print item + ',',
...
aaa, bbb, ccc,


(notice the comma at the end of the print statement: this causes the
suppression of the automatic newline)

Is this what you need?

-- 
Renato Ramonda

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

Reply via email to