Reputation: 330
I will post the picture of what exactly I am asking variable explorer in spyder
So do we have this feature in VS code?
I tried a lot to find it on google but was unhappy to not find it.
Upvotes: 31
Views: 40884
Reputation: 101
You can now find all variables in a Jupyter Notebook in VS Code in the Output panel under Jupyter: Variables
Upvotes: 1
Reputation: 1593
Upvotes: 19
Reputation: 28633
spyder is probably running a REPL (Jupyter is doing that also). From that python process they show the local and global variables, just like a debugger would do on a breakpoint.
If you use Python Interactive you have similar functionality with the Variables Explorer and Data Viewer or use Jupyter notebooks
Upvotes: 4