Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 390 Bytes

structuring_programs.md

File metadata and controls

12 lines (8 loc) · 390 Bytes

Structuring programs

In Python, you can structure programs on four different levels: with functions, classes, modules and packages. Of these, classes are the most complicated to use. Therefore they are skipped in this tutorial.

Goals

  • Learn to write functions
  • Learn to write modules
  • Learn to write packages
  • Know some standard library modules
  • Know some installable modules