On 30 Apr 2006 08:32:47 -0700, Byte <[EMAIL PROTECTED]> wrote:

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?

>>> print  " ".join(xyz)
Hello There

HTH :)

--

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

Reply via email to