Free Access of Jupyter Notebook and JupyterLab

This section provides a tutorial example on how to use the free JupyterLab server provided at jupyter.org.

If you want to try Jupyter Notebooks or JupyterLab, you can use these free servers provided by jupyter.org. No login is required.

Here is what I did:

1. Go to https://jupyter.org/try-jupyter/lab/. A JupyterLab interface is displayed.

2. Click "File > New > Notebook" menu. A new notebook is displayed.

3. Enter the following code in the notebook.

print("Hello world!")

3. Press "Run" icon. The code will be executed. Output will be displayed in the notebook.

4. Enter the following code to check the Python version.

import sys
sys.version

Cool. jupyter.org seems to provide the latest version of the Python engine.

Run Python Code in Jupyter Notebooks
Run Python Code in Jupyter Notebooks

Table of Contents

 About This Book

 Running Python Code Online

 Python on macOS Computers

 Python on Linux Computers

 Built-in Data Types

 Variables, Operations and Expressions

 Statements - Execution Units

 Function Statement and Function Call

 Iterators, Generators and List Comprehensions

 Classes and Instances

 Modules and Module Files

 Packages and Package Directories

 "sys" and "os" Modules

 "pathlib" - Object-Oriented Filesystem Paths

 "pip" - Package Installer for Python

 SciPy.org - Python Libraries for Science

 pandas - Data Analysis and Manipulation

 Anaconda - Python Environment Manager

Jupyter Notebook and JupyterLab

 What Is Jupyter Notebook

Free Access of Jupyter Notebook and JupyterLab

 Jupyter Notebook Architecture

 Run Jupyter Notebook at mybinder.org

 References

 Full Version in PDF/EPUB