Jupyter Notebook Tutorial - 2019

Опубликовано: 18 Март 2026
на канале: Renaissance Engineer
746
19

In this Python tutorial we will go over how to use Jupyter Notebook in 2019. We will cover the basics like how to run your code in cells and then move on to more advanced topics like magic commands and keyboard shortcuts

Topics covered in this Jupyter Notebook tutorial:
1. Installing Jupyter
2. Starting Jupyter notebook
3. Working with cells
4. Toolbar overview
5. Menu overview
6. Inline shell commands
7. Magic commands
8. Keyboard shortcuts

Jupyter notebooks are an open source tool for interactive computing. It is possible to use Jupyter with many different programming languages but the language most commonly used is Python. Jupyter notebooks are commonly used for sharing results in the data science and scientific computing community. Jupyter notebooks are also very useful for beginner programmers as well because the REPL provides quick and easy feedback as well as allowing new programmers to follow along with complex programs and see what is happening at every step.

Jupyter is composed of a web application and kernel for the language being used with Jupyter. The kernel what executes the code that is typed in the front end web application. This is what allows Jupyter to work with multiple different programming languages while using the same frontend.