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.)

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

Reply via email to