I l@ve RuBoard Previous Section Next Section

2.1 Python Program Structure

By way of introduction, let's first get a clear picture of how what we study in this chapter fits into the overall Python picture. From a more concrete perspective, Python programs can be decomposed into modules, statements, and objects, as follows:

  1. Programs are composed of modules.

  2. Modules contain statements.

  3. Statements create and process objects.

I l@ve RuBoard Previous Section Next Section