Jupyter Markdown Shortcut



Jupyter (formerly IPython Notebook) is an open-source project that lets you easily combine Markdown text and executable Python source code on one canvas called a notebook. Visual Studio Code supports working with Jupyter Notebooks natively, as well as through Python code files. This topic covers the support offered through Python code files and demonstrates how to:

  1. Jupyter Notebook Shortcut Markdown Cell
  2. Jupyter Markdown Shortcut
  3. Markdown Shortcut Jupyter Notebook
  4. Jupyter Markdown Hotkey
  5. Jupyter Shortcut Markdown Cell

In this tutorial, you use the BigQuery client library for Python and Pandas in a Jupyter notebook to visualize. Markdown cells: contain markdown text. If you start doing some action with the mouse, stop and think if there is a shortcut. If there is a one - use it. When I started usin g Jupyter Notebook I didn’t know that there are shortcuts for this tool. Several times, I changed my cell type from code to markdown and I didn’t know how. As you can guess this caused me a lot of headache.

  • Work with Jupyter-like code cells
  • Run code in the Python Interactive Window
  • View, inspect, and filter variables using the Variable explorer and data viewer
  • Connect to a remote Jupyter server
  • Debug a Jupyter notebook
  • Export a Jupyter notebook

To work with Jupyter notebooks, you must activate an Anaconda environment in VS Code, or another Python environment in which you've installed the Jupyter package. To select an environment, use the Python: Select Interpreter command from the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)).

Once the appropriate environment is activated, you can create and run Jupyter-like code cells, connect to a remote Jupyter server for running code cells, and export Python files as Jupyter notebooks.

Jupyter code cells

You define Jupyter-like code cells within Python code using a # %% comment:

Note: Make sure to save the code shown above in a file with a .py extension.

When the Python extension detects a code cell, it adds Run Cell and Debug Cell CodeLens adornments. The first cell also includes Run Below and all subsequent cells include Run Above:

Note: By default, Debug Cell just steps into user code. If you want to step into non-user code, you need to uncheck Data Science: Debug Just My Code in the Python extension settings (⌘, (Windows, Linux Ctrl+,)).

Run Cell applies to only the one code cell. Run Below, which appears on the first cell, runs all the code in the file. Run Above applies to all the code cells up to, but not including, the cell with the adornment. You would use Run Above, for example, to initialize the state of the runtime environment before running that specific cell.

Selecting a command starts Jupyter (if necessary, which might take a minute), then runs the appropriate cell(s) in the Python Interactive window:

You can also run code cells using (Ctrl+Enter) or the Python: Run Selection/Line in Python Terminal command (Shift+Enter). After using this command, the Python extension automatically moves the cursor to the next cell. If you're in the last cell in the file, the extension automatically inserts another # %% delimiter for a new cell, mimicking the behavior of a Jupyter notebook.

You can also click in the margin to the left of line numbers to set breakpoints. Then you can use Debug Cell to start a debugging session for that code cell. The debugger stops execution at breakpoints and allows you to step through code one line at a time and inspect variables (see Debugging for details).

Additional commands and keyboard shortcuts

The following table lists additional commands and keyboard shortcuts supported when working with code cells.

CommandKeyboard shortcut
Python: Go to Next CellCtrl+Alt+]
Python: Go to Previous CellCtrl+Alt+[
Python: Extend Selection by Cell AboveCtrl+Shift+Alt+[
Python: Extend Selection by Cell BelowCtrl+Shift+Alt+]
Python: Move Selected Cells UpCtrl+; U
Python: Move Selected Cells DownCtrl+; D
Python: Insert Cell AboveCtrl+; A
Python: Insert Cell BelowCtrl+; B
Python: Insert Cell Below PositionCtrl+; S
Python: Delete Selected CellsCtrl+; X
Python: Change Cell to CodeCtrl+; C
Python: Change Cell to MarkdownCtrl+; M

Python Interactive window

The Python Interactive window, mentioned in the previous section, can be used as a standalone console with arbitrary code (with or without code cells). To use the window as a console, open it with the Jupyter: Create Interactive Window command from the Command Palette. You can then type in code, using Enter to go to a new line and Shift+Enter to run the code.

To use the window with a file, use the Jupyter: Run Current File in Python Interactive Window command from the Command Palette.

IntelliSense

The Python Interactive window has full IntelliSense – code completions, member lists, quick info for methods, and parameter hints. You can be just as productive typing in the Python Interactive window as you are in the code editor.

Plot Viewer

The Plot Viewer gives you the ability to work more deeply with your plots. In the viewer you can pan, zoom, and navigate plots in the current session. You can also export plots to PDF, SVG, and PNG formats.

Within the Python Interactive window, double-click any plot to open it in the viewer, or select the expand button on the upper left corner of the plot.

Note: The Python Interactive window supports rendering plots created with matplotlib and Altair.

Live Share for Python Interactive

The Python Interactive window also supports Visual Studio Live Share for real-time collaboration. Live Share lets you co-edit and co-debug while sharing audio, servers, terminals, diffs, comments, and more.

This feature requires the Live Share extensions to be installed on both host and guest machines.

Variable explorer and data viewer

Within the Python Interactive window, it's possible to view, inspect, and filter the variables within your current Jupyter session. By expanding the Variables section after running code and cells, you'll see a list of the current variables, which will automatically update as variables are used in code.

For additional information about your variables, you can also double-click on a row or use the Show variable in data viewer button to see a more detailed view of a variable in the Data Viewer. Once open, you can filter the values by searching over the rows.

Note: Variable explorer is enabled by default, but can be turned off in settings (Python > Data Science: Show Jupyter Variable Explorer).

Connect to a remote Jupyter server

You can offload intensive computation in a Jupyter notebook to other computers by connecting to a remote Jupyter server. Once connected, code cells run on the remote server rather than the local computer.

To connect to a remote Jupyter server:

  1. Run the Jupyter: Specify local or remote Jupyter server for connections command from the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)).

  2. Select how you would like to connect to a Jupyter server.

  3. If working remotely, provide the server's URI (hostname) with the authentication token included with a ?token= URL parameter when prompted. (If you start the server in the VS Code terminal with an authentication token enabled, the URL with the token typically appears in the terminal output from where you can copy it.) Alternatively, you can specify a username and password after providing the URI.

  4. The Python Interactive window indicates where code is run by displaying the URI (which is blurred out in the image below):

Note: For added security, Microsoft recommends configuring your Jupyter server with security precautions such as SSL and token support. This helps ensure that requests sent to the Jupyter server are authenticated and connections to the remoter server are encrypted. For guidance about securing a notebook server, see the Jupyter docs.

Convert Jupyter notebooks to Python code file

When you've activated an environment with Jupyter installed, you can open a Jupyter notebook file (.ipynb) in VS Code and then convert it to Python code. Once you've converted the file, you can run the code as you would with any other Python file and also use the VS Code debugger. Opening and debugging notebooks in VS Code is a convenient way to find and resolve code bugs, which is difficult to do directly in a Jupyter notebook.

When you open a notebook file, Visual Studio Code will open it in the Notebook Editor automatically. Use the convert icon on the toolbar to convert the Notebook (.ipynb) file to a Python file (.py).

Select the convert icon followed by 'Python Script', wait a few seconds, and then VS Code opens the converted notebook in an untitled file. The notebook's cells are delimited in the Python file with # %% comments; Markdown cells are converted wholly to comments preceded with # %% [markdown], and render as HTML in the interactive window alongside code and output such as graphs:

Note: The first time you run code cells in a Python file, the Python extension starts a Jupyter server. It may take some time for the server to start up and for the Python Interactive window to appear with the results of the code.

Debug a Jupyter notebook

The Visual Studio Code debugger lets you step through your code, set breakpoints, examine state, and analyze problems. Using the debugger is a helpful way to find and correct issues in notebook code.

  1. In VS Code, activate a Python environment in which Jupyter is installed, as described at the beginning of this article.

  2. Import the notebook's .ipynb file into VS Code as described in the previous section. (Download the file first if you're using a cloud-based Jupyter environment such as Azure Notebooks.)

  3. To start the debugger, use one of the following options:

    • For the whole notebook, open the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)) and run the Jupyter: Debug Current File in Python Interactive Window command.
    • For an individual cell, use the Debug Cell adornment that appears above the cell. The debugger specifically starts on the code in that cell. By default, Debug Cell just steps into user code. If you want to step into non-user code, you need to uncheck Data Science: Debug Just My Code in the Python extension settings (⌘, (Windows, Linux Ctrl+,)).
  4. To familiarize yourself with the general debugging features of VS Code, such as inspecting variables, setting breakpoints, and other activities, review VS Code debugging.

  5. As you find issues, stop the debugger, correct your code, save the file, and start the debugger again.

  6. When you're satisfied that all your code is correct. Save the file, then export the notebook as described in the following section. You can then upload the notebook to your normal Jupyter environment.

Export a Jupyter notebook

In addition to opening a Jupyter notebook, you can also use one of the following commands from the Command Palette (⇧⌘P (Windows, Linux Ctrl+Shift+P)) to export content from a Python file in VS Code to a Jupyter notebook (with the .ipynb extension).

  • Jupyter: Export Current Python File as Jupyter Notebook: creates a Jupyter notebook from the contents of the current file, using the # %% and # %% [markdown] delimiters to specify their respective cell types.
  • Jupyter: Export Current Python File and Output as Jupyter Notebook: creates a Jupyter notebook from the contents of the current file and includes output from code cells.
  • Jupyter: Export Interactive Window as Jupyter Notebook: creates a Jupyter notebook from the contents of the Python Interactive window.

After exporting the contents, VS Code displays a prompt through which you can open the notebook in a browser.

By Matt Murbach

This page is the second post in a series of introductory python tutorials:
1. Installing Python using Conda
2. Getting started with Jupyter - this tutorial
3. Using Python packages
4. Working with data
5. Making figures in Python

Jupyter is an open-source web application allowing you to run “notebooks” in your browser.These notebooks can contain code, equations, and visualizations in one, interactive, and shareable place.

If you want to quickly demo the notebooks online you can go to https://try.jupyter.org/

In this post, we will discuss installing Jupyter and demo some of the useful features of this technology.A Jupyter notebook with the below examples can be downloaded here: intro-to-jupyter.ipynb

1. Installing Jupyter

Installing Jupyter and Jupyter Lab

Jupyter Markdown Shortcut

Open your command prompt or Git BASH (Windows) or a terminal (OS X, linux)

  • Install Jupyter by running conda install jupyter notebook
  • Install Jupyter Lab by running conda install -c conda-forge jupyterlab

2. Running the Jupyter application

Navigate to the directory you’d like to work in

Run the following in your command prompt or terminal to create a directory in your Documents folder for this tutorial.
Note: the cd command means change directory and mkdir makes a directory

(Command prompt)

Opening Jupyter Lab

To open the application simply run the command jupyter lab

A few seconds after executing the above code, your default browser should open and you should see:

3. Creating a new notebook

To create a new notebook, click on “Python 3” under the notebook header:

which will create a blank notebook document titled “Untitled.ipynb” that is now displayed as a tab:

4. Overview of notebook components

Before we start writing code, let’s take a second to explore the notebook itself:

  • To change the filename, simply right-click on the title and rename the file
  • We can see that the kernal here is a Python 3 kernal and that it is currently not executing anything (dot is unfilled)
  • We will put the cell type selection into good use below to switch between code and markdown

5. Let’s execute some code!

Let’s start by typing some example Python code into the cell:

To execute this cell we can press shift + enter

6. Modularity makes it easy to develop code in bite size chunks

Step 1. Data intensive operation

Jupyter Notebook Shortcut Markdown Cell

Step 2. Visualization or exploratory data analysis

7. Other cool features:

In addition to running code snippets in cells, Jupyter also has several other handy features.

Markdown

Jupyter cells can also be used to display equations, documentation, and tables using Markdown.

To demonstrate this, click on a new cell and select ‘Markdown’ from the cell type dropdown menu at the top of the notebook.

Type some Markdown:

and click shift + enter again to execute the cell. This time instead of executing code, you should see the following display:

Markdown is a powerful tool to display images/equations/code/notes easily (all the tutorial posts here are written in Markdown for example).For additional information on Markdown syntax, there are several ‘Markdown Cheatsheets’ (e.g. here or here) or an interactive markdown editor to explore with.

Keyboard shortcuts

Jupyter Markdown Shortcut

Just like we used the shift + enter shortcut to execute a cell, there are lots of other shortcuts which make it even easier to work within Jupyter notebooks.

There are two different ‘modes’ you can be in when using the notebook (Command mode and Edit mode).You can tell which mode based off of the color of the cell outline (blue = Command mode, green = Edit mode) and you can switch between the two using the esc and enter keys.

For example,

  1. Click on a cell so you can type code (you’re now in edit mode)
  2. Push esc (to switch to Command mode)
  3. Push b (this is the shortcut to create a new cell below your current location)
  4. Push m (to switch this cell type to Markdown)
  5. Push enter (to enter Edit mode)
  6. Type some Markdown code
  7. Use shift + enter to execute

Here are a few useful shortcuts (you can see all of them by hitting h in command mode):

Useful command mode shortcuts
CommandAction
aCreate new cell above
bCreate new cell below
d dDelete current cell
zUndo delete cell
mChange cell to markdown
yChange cell to code
hBring up the list of shortcuts

Markdown Shortcut Jupyter Notebook

Useful editing shortcuts
CommandAction
Ctrl-aSelect all
Ctrl-cCopy
Ctrl-vPaste
Ctrl-sSave
TabAutocomplete
Shift-tabTooltips

Support for lot’s of different languages

While Jupyter grew out of IPython and stands for Ju (Julia) + py (Python) + r ( R ), the Jupyter environment supports kernals for many many (~75) other languages

Image from Fernando Perez PLOTCON talk

Jupyter Markdown Hotkey

If you’ve made it this far, congratulations!

Jupyter Shortcut Markdown Cell

You now have Jupyter installed and know your basic way around using notebooks for executing code and displaying Markdown. In the next tutorial, we’ll introduce several useful Python packages and start performing some more useful analysis. Part 3. Using Python packages.





Comments are closed.