I would like to make several statements that give standard output without seeing newlines in between statements.
Specifically, suppose I have:
for it
I think a simple join should work:
nl = [] for x in range(1,10):nl.append(str(x)) print ' '.join(nl)