Jupyter Notebook introduction
- Leo Oryn
- Jul 24, 2024
- 1 min read
In todays CFG class we looked at Jupyter Notebook, a really cool program that lets you mix blocks of script with blocks of markdown (these are called cells).

The above is a cell of Python code. Each cell can be run individually and prints the output below the cell.
Markdown cells can be used to add descriptions, headings and much more. Punctuation is used to change the styling of text in a markdown cells. For example, `# Leo` will print `Leo` as a heading, and `- Hello World` will print `Hello World` as a bullet point:

Todays class was just an introduction, but Jupyter Notebook is easy to learn, use and adds a nice amount of creativity to documents.