Python Tutorials - Herong's Tutorial Examples - v2.14, by Herong Yang
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.
Table of Contents
Variables, Operations and Expressions
Function Statement and Function Call
Iterators, Generators and List Comprehensions
Packages and Package Directories
"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
►Free Access of Jupyter Notebook and JupyterLab