26

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?

CiaranWelsh
  • 7,014
  • 10
  • 53
  • 106

1 Answers1

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