我们一起学python——Tutorial学习法

1、The Python Language Reference¶
这个文档主要讲python的主要语法和核心语义
2、The Python Standard Library
这个文档是承接1中的内容,主要讲python其他标准库的
3、The Python Tutorial
这个是简短但是非正式的教程。
4、Extending and Embedding the Python Interpreter
这个是给想要开发python的同学用的。

This reference manual describes the syntax and “core semantics” of the language. It is terse, but attempts to be exact and complete. The semantics of non-essential built-in object types and of the built-in functions and modules are described in The Python Standard Library. For an informal introduction to the language, see The Python Tutorial. For C or C++ programmers, two additional manuals exist: Extending and Embedding the Python Interpreter describes the high-level picture of how to write a Python extension module, and the Python/C API Reference Manual describes the interfaces available to C/C++ programmers in detail.

猜你喜欢

转载自blog.csdn.net/weixin_38246633/article/details/85721529