I used to code in Matlab in which it's easy to see the saved variables in the workspace window. So for example a = [1,2,3] can be easily found in the workspace window.
Now I started to use python in Pycharm. In Python I can create the same variable, a = [1,2,3] but there isn't a window which shows me all the variables already created in the script. Having only 1 variable isn't a problem but when defining a lot of variables it can be difficult to know which variables are already defined ant what these variables contain.
My Question:
How does one have a good overview of all variables in Python (Pycharm)? Is there a similar window like the Workspace window of Matlab in Pycharm?