Alan Gilfoy wrote:
> I have a program producing a list of multiple strings.
> The amount of strings in the list varies.
> I want to assemble a string that is:
> 
> list item 0 + space + list item 1 + space,
> and so on, going through every string in the list.

' '.join(myList)

Kent
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to