May 2022
Intermediate to advanced
710 pages
16h 41m
English
Now that we have a working Python installation, we need to run some code. The most obvious way is to create a Python file and execute it. Often, it can be faster to interactively develop code from an interactive Python interpreter, however. While the standard Python interpreter is already quite powerful, many enhancements and alternatives are available.
The alternative interpreters/shells offer features such as:
In this chapter, you will learn about:
bpythonptpythonipythonjupyterThe standard Python interpreter ...