Re: [Tutor] Joining non strings in to string

2005-10-28 Thread Wolfram Kraus
Eddie S wrote: > Hi, > I have a list containing numbers. I want to join this list in to a > string which I can then output. The problem is I cant seem to join > list of non-string items in to a string. > > My list looks something like: > > list = [5,7,20,19,49,32] > > I could loop through the li

[Tutor] Joining non strings in to string

2005-10-28 Thread Eddie S
Hi, I have a list containing numbers. I want to join this list in to a string which I can then output. The problem is I cant seem to join list of non-string items in to a string. My list looks something like: list = [5,7,20,19,49,32] I could loop through the list outputing each number individual