administrata wrote:
Is it possible?

I tried...

I = "John"
print \
"""
I used to love pizza"""


Error occurs!!!

No error occurs; it prints "I used to love pizza", as would be expected.

Oh: from the subject line, I'm guessing that you want it to say "John used to love pizza" instead? In that case, try doing this:

I = "John"
print "%s used to love pizza" % I
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to