Avatar ·

Debugging Python code

📁 проект

I have a project written in Python. I am developing it on the Ubuntu platform, in a text editor. What tools should I use to get step-by-step debugging capabilities?

Avatar ·

Perhaps the most convenient way is to use an IDE for Python, for example (this is a plugin for Eclipse) or PyCharm. The debugger is integrated there. If you are not bothered by the console interface of the debugger, then the Python standard library has a module that is a full-fledged debugger.

Log in to leave an answer

Интересные статьи