<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
MTD wrote:
<blockquote
cite="mid1151313222.382208.98390@b68g2000cwa.googlegroups.com"
type="cite">
<pre wrap="">Hari Sekhon wrote:
</pre>
<blockquote type="cite">
<pre wrap="">Is it better to do:
message = """This is line1.
This is line2
This is line3\n"""
or
message = "This is line1.\n
message = message + "This is line2\n"
message = message + "This is line3\n"
</pre>
</blockquote>
<pre wrap=""><!---->
Is there any reason you can't do it in one line?
message = "This is line1.\nThis is line2.\nThis is line3.\n"
</pre>
</blockquote>
this would also be ugly though, a huge lone line for the paragraph I
want to output, which would wrap around and break the visual
indentation.<br>
<br>
otherwise I could do it in one line. but if I was going to do that and
it was going to be so long, I'd just use """..."""
</body>
</html>