Re: Converting tuple to String

2006-04-30 Thread Byte
Great, that works thanks -- /usr/bin/byte -- http://mail.python.org/mailman/listinfo/python-list

Re: Converting tuple to String

2006-04-30 Thread Daniel Nogradi
> Is their a command to convert a tuple to string? e.g. > > xyz = "Hello", "There" > print xyz > > Is their any way of getting print to see xyz as being one string i.e. > "Hello There" rather than "Hello" and "There", despite "Hello" and > "There" being, in reality, seperate? Try one_big_string =

Re: Converting tuple to String

2006-04-30 Thread Stefan Lang
On Sunday 30 April 2006 17:32, Byte wrote: > Is their a command to convert a tuple to string? e.g. > > xyz = "Hello", "There" > print xyz > > Is their any way of getting print to see xyz as being one string > i.e. "Hello There" rather than "Hello" and "There", despite "Hello" > and "There" being, i

Re: Converting tuple to String

2006-04-30 Thread Tim Williams
On 30 Apr 2006 08:32:47 -0700, Byte <[EMAIL PROTECTED]> wrote: xyz = "Hello", "There"print xyzIs their any way of getting print to see xyz as being one string i.e."Hello There" rather than "Hello" and "There", despite "Hello" and "There" being, in reality, seperate? >>> print  " ".join(xyz)Hello Th

Converting tuple to String

2006-04-30 Thread Byte
Is their a command to convert a tuple to string? e.g. xyz = "Hello", "There" print xyz Is their any way of getting print to see xyz as being one string i.e. "Hello There" rather than "Hello" and "There", despite "Hello" and "There" being, in reality, seperate? Thanks in advance, -- /usr/bin/byt