We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts开发者_开发百科 and citations.
Closed 5 years ago.
Improve this questionIs there a data viewer in Python/IPython like the variable editor in MATLAB?
You should try spiderlib:
http://code.google.com/p/spyderlib/
it's a dev environment a la matlab.
No, because python is not an integrated environment, but "only" a programming language. You can use locals
or globals
to give the defined variables. You can filter them with something like this:
filter(lambda x: not x.startswith("__"), locals())
in ipython, ipipe.igrid()
can be used to view tabular data.
Even Pycharm will be a good option if you are looking for MATLAB like editor.
精彩评论