There are certain jupyter key shortcuts/tricks that helps developers remain more productive.
- To run a cell
Shift + enterorctrl + enter. - Jupyter notebooks also offers tab completion
- You can also get documentation within
jupyter-notebookby hittingshft + tabthree times or you can by?at the end of the function to getdocs.
-
Mformarkdownmode andYfor command mode. -
%envThis is going to print environment variables. -
%pdbactivatespdbdebugger. -
%pylaballows to work interactively withnumpyandmatplotlib. -
%%debugactivate debbugging mode in cell. -
%%htmlrenders cell as html. -
%%latexrenders cell as latex. -
%%shshell script. -
%%timetime command to see how long it took to run the command.
These are my personal favorites for jupyter-notebook.
Btw this was published in my personal wiki.
Do you guys keep a personal wiki ?


Top comments (2)
Good Article
Thanks