My code is, for better or worse, rife with single letter variables (it's physics stuff, so those letters are meaningful), as well as NumPy's, which I'm often interacting with.
When using the Python debugger, occasionally I'll want to look at the value of, say, n
. However, when I hit n<enter>
, that's the PDB command for (n)ext
, which has a higher priority. print n
works around looking at it, but how can I set it?
You can use semicolons, so just put something else in front of it:
That is not the direct answer to your question, but it may help you: PuDB is a console-based visual interface for PDB which separates commands from variable manipulation by design.
Eric IDE, Wing IDE & Spyder to mention just a few all have visual debuggers that are worth a go as they separate the display of values from the commands.
Use an exclamation mark
!
before a statement to have it run :The docs say: