Need to know Jupyter Notebook and Markdown Short cuts
A list of some shortcuts I think are essential
Jupyter Notebook
Jupyter notebooks are an open source application that allows you to create notebooks with live code. The notebooks help you stay organized with easy to annotate code and I find them essential for any project. I got my first experience with Jupyter in the flatiron data science program and got a crash course in how to use the notebooks. In this blog I will share some shortcuts for Jupyter and some tricks I wish I had known when I first started using the notebooks. The majority of these shortcuts I found on the Edereka Jupyter cheatsheet.
Keyboard Shortcuts
- Command a : Select all
- Command z : Undo
- Command y: Redo
- Command s: Save
- b : New Cell Below
- a : New Cell Above
- Shift m : Merge cells
- Command + ], Command + [ : Indent, dedent
- Option + Return : Run Cell and insert cell cellow
- Escape d d : Delete selected cell
- Escape y : change cell to code
- Escape m : Change cell to markdown
- Escape r : Change cell to raw
Markdown
- # heading 1
- ## Heading 2
- ### Heading 3
- **bold text**
- *italicized text*
- >block quote
- (title)[link] embedded link
- !(title)[image.jpg]
Happy Coding
These short cuts are the bread and butter of using jupyter notebooks. I hope that this quick collection of shortcuts is useful for starting a new project.
For more documentation on shortcuts check out https://www.edureka.co/blog/wp-content/uploads/2018/10/Jupyter_Notebook_CheatSheet_Edureka.pdf