I read that pressing shift+tab
after a function displays the function's docstring in an IPython notebook, but this does not seem to work in my IPython (no notebook). I run IPython 4.0.0 on Ubuntu.
Any suggestion?
I read that pressing shift+tab
after a function displays the function's docstring in an IPython notebook, but this does not seem to work in my IPython (no notebook). I run IPython 4.0.0 on Ubuntu.
Any suggestion?
Press Tab+Shift, it works for jupyter notebook 5.6.0 version.
The standard (console) IPython does not support the call tips via
<shift> + <tab>
. But a question mark before or after the function shows you the docstring:As an alternative you can use the qtconsole version:
Then:
Should show you a box with a call tip without pressing
<shift> + <tab>
: