The Python Tutorial:Python教程笔记
【注】翻译官方文档,只是想在学习Python过程留下笔记,如涉及侵权,请联系删除。
The Python Tutorial
linyk3简书:The Python Tutorial:Python教程笔记
Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms.
Python 是一门易学、功能强大的编程语言。它拥有高级数据结构,以及简单却有效的方法来实现面向对象编程。Python 优雅的语法和动态类型以及它天然的解释能力,使其成为大部分平台的很多领域里一门理想的脚本和快速应用开发语言。
The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, https://www.python.org/, and may be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation.
Python 解释器及其扩展标准库都可以在Python官网 https://www.python.org/和所有的镜像网站上以源码或编译版本的形式免费获取和自由发布。官网上也提供很多第三方Python 模块,程序和工具以及附加文档和链接。
The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C). Python is also suitable as an extension language for customizable applications.
Python 解释器很容易通过C/C++(以及其他由C调用的语言)来扩展新的函数和数据类型。所以Python也很适合作为自定义应用的扩展语言。
This tutorial introduces the reader informally to the basic concepts and features of the Python language and system. It helps to have a Python interpreter handy for hands-on experience, but all examples are self-contained, so the tutorial can be read off-line as well.
这个教程向读者通俗的介绍Python语言和系统的基本的概念和特征。有一个Python 解释器对于亲自动手做实验是很方便的,但是所有的实验都是独立的,所以这个教程也可以离线阅读。
For a description of standard objects and modules, see The Python Standard Library.The Python Language Reference gives a more formal definition of the language. To write extensions in C or C++, read Extending and Embedding the Python Interpreterand Python/C API Reference Manual. There are also several books covering Python in depth.
对于对象和模块的标准描述,请查看Python 标准库:The Python Standard Library.Python 语言参考:The Python Language Reference 给出了Python语言更加正式的定义。 用C或者C++来写相关扩展的话,请查看: Extending and Embedding the Python Interpreterand Python/C API Reference Manual.
This tutorial does not attempt to be comprehensive and cover every single feature, or even every commonly used feature. Instead, it introduces many of Python’s most noteworthy features, and will give you a good idea of the language’s flavor and style. After reading it, you will be able to read and write Python modules and programs, and you will be ready to learn more about the various Python library modules described in The Python Standard Library.
这里也有几本书来深度学习Python.
这个教程不会尝试广泛的覆盖每一个特征,或者甚至每一个常用的特征。相反的,它介绍了很多Python最值得注意的特征,并且会提供你一个关于Python语言的韵味和风格好的建议。读完这个教程后,你将能够读和写Python模块和程序,你也能够准备好去学习Pyhton 标准库:The Python Standard Library里描述的Python库模块。
The Glossary is also worth going through.
这个词汇表Glossary也很值得去过一遍。
- 1. Whetting Your Appetite 欢迎你的使用
- 2. Using the Python Interpreter
- 3. An Informal Introduction to Python
- 4. More Control Flow Tools
- 5. Data Structures
- 6. Modules
- 7. Input and Output
- 8. Errors and Exceptions
- 9. Classes
-
10. Brief Tour of the Standard Library
- 10.1. Operating System Interface
- 10.2. File Wildcards
- 10.3. Command Line Arguments
- 10.4. Error Output Redirection and Program Termination
- 10.5. String Pattern Matching
- 10.6. Mathematics
- 10.7. Internet Access
- 10.8. Dates and Times
- 10.9. Data Compression
- 10.10. Performance Measurement
- 10.11. Quality Control
- 10.12. Batteries Included
- 11. Brief Tour of the Standard Library — Part II
- 12. Virtual Environments and Packages
- 13. What Now?
- 14. Interactive Input Editing and History Substitution
- 15. Floating Point Arithmetic: Issues and Limitations
- 16. Appendix