How to start using Jupyter Notebooks
Download Anaconda and Visual Studio Code

Search for a command to run...
Download Anaconda and Visual Studio Code

No comments yet. Be the first to comment.
https://youtu.be/R6NtOSajrnw

Interactive Dissolved Oxygen Level Chart using Publically Available Data

Unit Convertor built with complex units and Excel in mind

If Python is not installed on your computer, the Anaconda Distribution is available for installation here.

Visual Studio Code is available for installation here.

Open the extensions tab and search for
ms-python.python

Create a file with the .ipynb extension using the New File button.

Select the desired python installation using the Select Kernel button.

Edit Mode allows for typing text into the current cell.
EnterEsc| Syntax | Usage |
a | Add cell above |
b | Add cell below |
⬆,k | Move up one cell |
⬇,j | Move up one cell |
y | Convert cell to code |
m | Convert cell to markdown |
| Syntax | Usage |
Ctrl+Enter | Run current cell |
Shift+Enter | Run current cell and move to next cell |
# This is a Header
This is **bold** and *italic* text.
Will get rendered as
This is bold and italic text.
x = 5
y = 6
x*y
Will be rendered as
30