I did not expect this, but:
print "AAAA",
print "BBBB"
Will output:
AAAA BBBB
With an extra space in the middle. This is actually documented.
How can I avoid that supurious space? The documentation says:
In some cases it may be functional to write an empty string to standard output for this reason.
But I do not know how to do that.