<br><div><span class="gmail_quote">On 30 Apr 2006 08:32:47 -0700, <b class="gmail_sendername">Byte</b> <<a href="mailto:eoinrogers@gmail.com">eoinrogers@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>xyz = "Hello", "There"<br>print xyz<br><br>Is their any way of getting print to see xyz as being one string i.e.<br>"Hello There" rather than "Hello" and "There", despite "Hello" and
<br>"There" being, in reality, seperate?<br></blockquote></div><br>
>>> print  " ".join(xyz)<br clear="all">Hello There<br>
<br>
HTH :)<br>
<br>-- <br><br>Tim Williams