is there a data viewer in python/ipython like the variable editor in MATLAB?
A:
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())
wiso
2010-04-02 11:03:49
++ for spyderlib
Eli Bendersky
2010-04-02 14:16:24