Steve Holden <[EMAIL PROTECTED]> wrote: > x = "hello world, this is my multiline " \ > "string!!!!" > > and this would have saved you a run-time string concatenation :)
or use parentheses for an alternative which doesn't need the backslash:
x = ("hello world, this is my multiline "
"string!!!!")
--
http://mail.python.org/mailman/listinfo/python-list
