June 2017
Beginner to intermediate
274 pages
6h 49m
English
This section primarily provides a basic understanding of the Python language constructs. If you feel you already have a solid grasp of Python, feel free to skip ahead.
Let's get down to the nuts and bolts.
A Python program is written as source code in one or more .py files and consists of statements and expressions as shown in the following screenshot:

Both statements and expressions tell Python to do something. The difference is that expressions can be combined to form more complex expressions, while statements can be combined with expressions, but not with other statements.
For example, a statement ...
Read now
Unlock full access