June 2017
Intermediate to advanced
446 pages
10h 10m
English
Python programs are executed by an interpreter, which means the code is fed through this interpreter to be executed by the underlying operating system, and results are displayed . There are several different implementation of the interpreter by the Python development community, such as IronPython and Jython. In this book, we will refer to the most common Python interpreter, CPython, which is in use today.
One way you can use Python is by taking the advantage of the interactive prompt. This is useful when you want to quickly test a piece of Python code or concept without writing a whole program. This is typically done by simply typing in the Python keyword:
Python 3.5.2 (default, Nov 17 2016, 17:05:23) [GCC 5.4.0 ...
Read now
Unlock full access