0

Is it possible to show variable values right in the Python code in Spyder like in Chrome Dev Tools:

enter image description here

Carlos Gonzalez
  • 858
  • 13
  • 23
Joys
  • 311
  • 3
  • 15

1 Answers1

1

I'm using Spyder 3.3.1 and I use "Variable Explorer" window, when in debugging mode to watch the variables change. This is the closest feature to the behavior you are looking for (which I'm aware of...) It should look like this:

enter image description here

EDIT:

In Pycharm though, the current state of variables is represented, along the code lines, similar to what you get in Chrome Dev, but it is also triggered from debugging mode. Looks like this:

enter image description here

Tim Mironov
  • 849
  • 8
  • 22