Leif K-Brooks <[EMAIL PROTECTED]> wrote in message news:<[EMAIL PROTECTED]>...
> 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

How can I do it with several variables?

About 10 or more...

HELP plz :)
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to