import sys from pyscript import display display("Hello", "PyScript Next - PyTerminal", append=False) print("this should go to the terminal") print("another line") # this works as expected print("this goes to stderr", file=sys.stderr)
Click me