Debugging With OkPy

The debug/console part is the one that lives right under the editor.

The Debug Tab

The “debug” tab is incredibly helpful when you’re coding. It reacts to what you’re typing in the editor and gives you information about all the syntax issues you may have. For someone learning python, it is an amazing way to get the help you need writing your code as it’s not just returning the error messages when running the code. It shows what fixes need to be performed and where as you type.

The Console Tab

The console tab is where you get error information from your runs.

You can also use the builtin python “print” statement to output things to the console:

Last updated