Jupyter is an open source, open-standards, services project for interactive computing across many applications. Jupyter Notebook is a web application that allows you to create, view, modify, and delete documents with any compatible data, along with Python CLI shell interaction. Jupyter runs on many programming languages, but Python with pip is a mandatory requirement. Refer to the Jupyter docs for further information: http://jupyter.org.
Jupyter
Architecture
Notebook is a kind of frontend, which does something extra apart from running code. It stores the code and output with markdown nodes in an editable file known as Notebook. When actions are performed on that file, either at the client side through the web UI or on the...