Watch expression in Python debugger?

Having used other debuggers in the past, I’ve come to appreciate the value of a “watch” window, where you can keep a set of expressions that will be evaluated for you whenever the debugger pauses at a breakpoint. Seeing the types and values of individual variables is good, but often it’s even more helpful to see the evaluated value of an expression instead.

I have looked (unsuccessfully) for this capability in the Replit debugger for Python. Does such a feature exist?

1 Like