1 | initial version |
Even in Python 2.7, you could import the print function from the future Python:
sage: from __future__ import print_function
sage: print("stuff stuff", end = " ")
stuff stuff sage: print("stuff stuff", end = " \n@\n")
stuff stuff
@
sage: