It is not showing the output from my program. Here is a screenshot of what it shows.
It just shows what appears to be a path. This is a very hard code editor to work with.
It is not showing the output from my program. Here is a screenshot of what it shows.
It just shows what appears to be a path. This is a very hard code editor to work with.
It appears the file isn’t saved, indicated by the white circle in the tab, which could mean that the command is just running an empty file.
There’s a secondary issue, which is that print x
is the python 2 syntax for print. You likely want print(x)
.
Thank You that worked.
If you know of a way to run a Python program in the terminal that only outputs the contents of your program, please let me know.
I really dislike all the clutter that gets sent to the terminal window.
It would be great to just see “Hello World”.
There is one way but the problem is you cannot use the input box function. So that won’t work.