I am using PyCharm 5.0.3 and I was wondering if there is a way to have a window for the variable workspace similar to R or MatLab. I have seen that Spyder has similar panes to MatLab. This is what I am kind of looking for:
I find the workspace window in MatLab very helpful for recognizing possible issues with the code. Is this possible, or will I need to switch to another IDE? I have seen that it is possible to see the variables while using the debugger function in PyCharm but when I run a simple couple of lines (shown below) through the debugger and look at the varibles I get this
import numpy as np
Dim = 11
V = np.zeros(shape=(11,11))