MATLAB variable editor in Python

Is there a data viewer in Python / IPython, such as a variable editor in MATLAB?

+3
source share
4 answers

You should try spiderlib:

http://code.google.com/p/spyderlib/

This is a la matlab development environment.

+9
source

No, because python is not an integrated environment, but a "only" programming language. You can use localsor globalsto give specific variables. You can filter them like this:

filter(lambda x: not x.startswith("__"), locals())
0
source

ipython, ipipe.igrid() .

0

Pycharm , MATLAB.

0

Source: https://habr.com/ru/post/1739503/