Notebookv7

Jupyter Notebook version 7

Theming and Dark Mode

Dark Theme available by default (Settings>>Theme).

Table of Contents

Notebook 7 includes a new table of contents extension that allows you to navigate through your notebook using a sidebar. The Table of Contents is built-in and enabled by default (View>>Table of Contents).

Debugger

Notebook 7 includes a new debugger that allows you to step through your code cell by cell. You can also set breakpoints and inspect variables (Click "Enable Debugger". View>> Debugger Panel).

In [ ]:
example = ['a', 'b', 'c', 'x'] 
for item in example:
    print(item)

example[12] = 0
print(example)
a
b
c
x

Language Server Protocol

Language Server Protocol extension for enhanced code completion.

In [2]:
from functools import partial

Jupytext

Pair the current notebook with different formats (Activate command palette Ctrl-Shift-c and search for "Pair")

In [3]:
list(map(lambda x:x**2, [ x for x in range(10) if x % 2 == 0]))
Out[3]:
[0, 4, 16, 36, 64]
In [ ]: