April 2024
Beginner to intermediate
500 pages
24h 20m
English
The IDLE development system is included with the Python download. You are welcome to use this system for entering and running Python code.
In this text, however, we have used Jupyter Notebook to generate the listings and sessions. We find that Jupyter Notebook has a better user interface, making it easier to use. To install the Jupyter Notebook library, type the following command in the command line1:
pip install jupyter
Once installed, to run the Jupyter Notebook, execute the following from the command line:
jupyter notebook
Jupyter Notebook runs in your web browser. When you run the above command, a browser window will open and you should see a home page like the following:
To create a new Python ...
Read now
Unlock full access