Public Jupyter Server with Python Engine

Q

How to use the Public Jupyter Server with Python Engine?

✍: FYIcenter.com

A

If you know Python and just want to try Jupyter and see how it works, you can use the Classic Jupyter Server offered to the public by jupyter.org as show in this tutorial.

1. Open https://jupyter.org in a Web browser.

2. Click "Try it in your browser" button in the "The Jupyter Notebook" section. You see a list of Jupyter Servers different Jupyter engines for different programming languages.

2. Click "Try Classic Notebook" button to launch a Jupyter Server with the Python 3 engine. You see the "Welcome to Jupyter!" notebook opened in a live Jupyter notebook window.

3. Click "+" icon to insert a new cell in notebook. You see a new input area opened up below the current cell.

4. Enter the following Python code in the input area.

msg = "I like it!"
print(msg)

4. Click "Run" icon to execute the code. You see the output displayed below the code.

Jupyter Notebook - Public Classic Server
Jupyter Notebook - Public Classic Server

 

Draw Math Curve with Python Engine

Using Public Free Jupyter Server

Using Public Free Jupyter Server

⇑⇑ Jupyter Tutorials

2021-12-23, 701🔥, 0💬