Bill Mill wrote: > You've got a couple problems. First, you need to end the string before > putting a continuation in.
>>> "no\
... pe"
'nope'
>>> "however\
File "<stdin>", line 1
"however\
^
SyntaxError: EOL while scanning single-quoted string
(in the second case, the ^ is trying to point out that I added
some whitespace after the backslash)
</F>
--
http://mail.python.org/mailman/listinfo/python-list
