I would like to make several statements that give standard output without seeing newlines in between statements.
Specifically, suppose I have:
for it
In [9]: print?
Type: builtin_function_or_method
Base Class:
String Form:
Namespace: Python builtin
Docstring:
print(value, ..., sep=' ', end='\n', file=sys.stdout)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.