Python Forum

Full Version: Variable Explorer in spyder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I don't know if there are many spyder users here: but i want to ask :
I have made a small program in python, but i don't understand, why the variable explorer does not
show my variables in the explorer .
(is it because they are in a function, but are the variables then not viewable in a function ???)

Is this not possible, or is there something wrong with this ?

Please do let me know you ideas ...

Many thanks in advance
Because all your variables are local ones (which are removed outside the function).

Use debug mode + breakpoints to verify it (ctrl + f5)