- Modular Programming with Python
- Erik Westra
- 183字
- 2021-07-16 10:47:16
Chapter 1. Introducing Modular Programming
Modular programming is an essential tool for the modern developer. Gone are the days when you could just throw something together and hope that it works. To build robust systems that last, you need to understand how to organize your programs so that they can grow and evolve over time. Spaghetti coding is not an option. Modular programming techniques, and in particular the use of Python modules and packages, will give you the tools you need to succeed as a professional in the fast changing programming landscape.
In this chapter, we will:
- Look at the fundamental aspects of modular programming
- See how Python modules and packages can be used to organize your code
- Discover what happens when modular programming techniques are not used
- Learn how modular programming helps you stay on top of the development process
- Take a look at the Python standard library as an example of modular programming
- Create a simple program, built using modular techniques, to see how it works in practice
Let's get started by learning about modules and how they work.
推薦閱讀
- Bootstrap Site Blueprints Volume II
- Spring Cloud Alibaba微服務架構設計與開發實戰
- C語言程序設計(第2 版)
- Beginning Java Data Structures and Algorithms
- 深入理解Java7:核心技術與最佳實踐
- C語言實驗指導及習題解析
- Swift細致入門與最佳實踐
- 區塊鏈底層設計Java實戰
- Visual Basic程序設計
- 深入淺出React和Redux
- Mastering Backbone.js
- Unity 2018 Shaders and Effects Cookbook
- Java 從入門到項目實踐(超值版)
- 大學計算機基礎實訓教程
- 程序員必會的40種算法