- 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.
推薦閱讀
- iOS Game Programming Cookbook
- AngularJS Testing Cookbook
- Java應用與實戰
- iOS 9 Game Development Essentials
- 實戰Java程序設計
- AngularJS深度剖析與最佳實踐
- Practical DevOps
- Android開發:從0到1 (清華開發者書庫)
- Keras深度學習實戰
- Learning jQuery(Fourth Edition)
- Android開發三劍客:UML、模式與測試
- 現代C++編程實戰:132個核心技巧示例(原書第2版)
- 零基礎學C語言(升級版)
- Node.js 6.x Blueprints
- Python應用開發技術