DEV Community

Discussion on: How to Write Documentation in the Python World!

Collapse
 
michaelcurrin profile image
Michael Currin

I like using help.

If I am in iPython I use object?, or object?? which shows the source code even.

Mostly I use the IDE to click through to the source code or hover over an object to get the docstring and arguments, so I use help less. Unless I am in the terminal only and then I have to.

Collapse
 
niklastiede profile image
Niklas Tiede

Yeah I also like to dive into the source code with ctrl + left-click on pycharm and F12 on Vscode ^_^