# Jupyter

Jupyter Notebook (formerly IPython Notebooks) is a web-based interactive computational environment for creating Jupyter notebooks documents.

# Libraries

# JupyterHub Distributions

# Snippets

# Useful magic commands

The %run commands runs a Python script inside the notebook:

%run file.py
1

The %%writefile writes the conents of a cell to a file:

%%writefile

def to_upper(x: str):
    return x.upper()
1
2
3
4
Last Updated: 12/26/2022, 5:42:03 PM