Is there any way to search text in ipton qtconsole?

I am using ipython with qtconsole. A feature that is not on the regular console is to search for console output. I expected to see it in the "Edit" menu.

Is there any way to do this?

+4
source share
1 answer

I do not know about this function, but you can use the Out variable (also available as _oh ), which is automatically displayed in the ipython console. Basically, this is a dictionary in which the keys are line numbers for which some result was returned, and the values ​​themselves are the results themselves. Therefore, if you are looking for something in Out.values() using whatever python code you prefer, it will be useful for you to find what you are looking for.

+1
source

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


All Articles