In the spyder
IDE it is possible to press ctrl+i
when instantiating a class to bring up the docstrings associated with that class. Is there a similar feature in jupyter notebook
?
Asked
Active
Viewed 3.9k times
26

CiaranWelsh
- 7,014
- 10
- 53
- 106
1 Answers
40
For the current version of Jupyter notebook, you can hit Shift-Tab
to bring up the signature and docstring of the class. This question is highly related to these other questions (so I'll flag this as a duplicate).

Brian Wylie
- 2,347
- 28
- 29
-
help(function_name) is an alternative – tryptofame Aug 27 '23 at 08:25