In the Preface, I mentioned that Python emphasizes concepts such as quality, productivity, portability, and integration. Since these four terms summarize most of the reasons for using Python, I'd like to define them in a bit more detail.

我在序言里提到,python强调诸如 质量,生产力,移植和综合等概念。既然这四个术语概括了实用python的原因,我很乐意把它们定义的更详细一些。

Software quality

软件质量

Developer productivity 开发人员的效率 Python is optimized for speed of development. It's easy to write programs fast in Python, because the interpreter handles details you must code explicitly in more complex, lower-level languages. Things such as type declarations, storage layout, memory management, common task implementations, and build procedures are nowhere to be found in Python scripts.