[EMAIL PROTECTED] wrote:

> print "foo"
> print "bar"
> 
> has a newline in between "foo" and "bar"
> 
> print "foo",
> print "bar"
> 
> has a space in between "foo" and "bar"
> 
> How prevent ANYTHING from going in between "foo" and "bar" ??
> 
> (Without defining a string variable.)

sys.stdout.write("foo")
sys.stdout.write("bar")

Diez
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to