Forums

Where does a PythonAnywhere console print to?

I am new to python and have an school assignment to print a phrase, like print("hello"). I don't know where to find the output when printing. Also, it has to be PythonAnywhere because that's the only one I can access with my computer.

The output will be printed on the next line in a console -- it will look like this:

Python 3.8.0 (default, Nov 14 2019, 22:29:45) 
[GCC 5.4.0 20160609] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello, world")
Hello, world
>>>