another "print" adds to the previous line
Hi,
I am searching for something which is opposite to the "\n".
print "aaa \n bbb";
will output:
aaa
bbb
And I need two print-commands write to one line:
print "aaa";
print "bbb";
Desired output:
aaabbb
Can I reach the goal by putting something after aaa?
Thank you.
|