File tree Expand file tree Collapse file tree 2 files changed +406
-0
lines changed Expand file tree Collapse file tree 2 files changed +406
-0
lines changed Original file line number Diff line number Diff line change
1
+ .. _tutorial-index :
2
+
3
+ ######################
4
+ Python 入门指南
5
+ ######################
6
+
7
+ :Release: |version |
8
+ :Date: |today |
9
+
10
+ Python 是一门简单易学且功能强大的编程语言。它拥有高效的高级数据结构,并且能够用简单而又高效的方式进行面向对象编程。Python 优雅的语法和动态类型,再结合它的解释性,使其在大多数平台的许多领域成为编写脚本或开发应用程序的理想语言。
11
+
12
+ 你可以自由地从 Python 官方点: http://www.python.org,以源代码或二进制形式获取 Python 解释器及其标准扩展库,并可以自由的分发。此站点同时也提供了大量的第三方 Python 模块、程序和工具,及其附加文档。
13
+
14
+ 你可以很容易的使用 C 或 C++(其他可以通过 C 调用的语言)为 Python 解释器扩展新函数和数据类型。Python 还可以被用作定制应用程序的一门扩展语言。
15
+
16
+ 本手册非正式的向读者介绍了 Python 语言及其体系相关的基本知识与概念。在学习实践中结合使用 Python 解释器是很有帮助的,不过所有的例子都是完整的,所以本手册亦可离线阅读。
17
+
18
+ 如果需要了解相关标准库或对象的详细介绍,请查阅 `Python 参考文档 <http://docs.python.org/3.3/library/index.html >`_ 。`Python 参考手册 <http://docs.python.org/3.3/library/index.html >`_ 提供了更多语言相关的正式说明。如果想要使用 C 或 C++ 编写扩展,请查阅 `Python 解释器扩展和集成章节 <http://docs.python.org/3.3/extending/index.html#extending-index >`_ 和 `C API 参考手册 <http://docs.python.org/3.3/c-api/index.html#c-api-index >`_ 。当然也可阅读一些深入介绍 Python 知识的图书。
19
+
20
+ 本手册不会尝试涵盖 Python 的全部知识和每个特性,甚至不会涵盖所有常用的特性。相反地,它介绍了 Python 中许多最引人瞩目的特性,并且会给你一个关于语言特色和风格的认识。读完之后,你将能够阅读和编写 Python 模块或程序,并为以后使用
21
+ `Python参考手册 <http://docs.python.org/3.3/library/index.html >`_ 继续学习诸多 Python 模块库做好准备。
22
+
23
+
24
+ `词汇表 <http://docs.python.org/3.3/glossary.html#glossary >`_ 也值得浏览一下。
25
+
26
+ .. toctree ::
27
+ :numbered:
28
+
29
+ appetite.rst
30
+ interpreter.rst
31
+ introduction.rst
32
+ controlflow.rst
33
+ datastructures.rst
34
+ modules.rst
35
+ inputoutput.rst
36
+ errors.rst
37
+ classes.rst
38
+ stdlib.rst
39
+ stdlib2.rst
40
+ whatnow.rst
41
+ interactive.rst
42
+ floatingpoint.rst
43
+ appendix.rst
You can’t perform that action at this time.
0 commit comments