Is there a data viewer in Python / IPython, such as a variable editor in MATLAB?
You should try spiderlib:
http://code.google.com/p/spyderlib/
This is a la matlab development environment.
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:
locals
globals
filter(lambda x: not x.startswith("__"), locals())
ipython, ipipe.igrid() .
ipipe.igrid()
Pycharm , MATLAB.
Source: https://habr.com/ru/post/1739503/More articles:multidimensional php array smarty loop - arraysGetting data types from an arbitrary SQL query in SQL Server 2008 - sqlPointers in For loops - c ++FileSystemWatcher runs as a licensed user - c #Access 2007: Unrecognized Database Format - ms-access-2007Why not use GDI + from ASP.NET - asp.netIQueryable :; / iframe> The extension method does not work - c #How to get a list of items when using cassandra - databaseJavascript focuses and doesn't work in FF - javascriptDo PHP platforms enhance the development process? - phpAll Articles