KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Python3.6.2-tutorial-zh-CN
★ 20
Open GitHub ↗
🦁Python3.6.2 官方文档 中文翻译
Download README (.md)
Explore Similar Repositories
Gibbed.MT
:
Tools & code for use with MT Framework-based games (a variety of games from Capcom).
accountbook
:
一个web app,适合一个群体使用的群账本
GPS-Receiver
:
This repository consists of the processing of the recieved GPS signals at the receiver side. MATLAB has been put to use. MATLAB to HDL may be used for running it on an FPGA.
Web-Scraping-Machine-Learning
:
Hackmageddon
seq2seq-attention-model
:
An implementation for attention model in Keras for sequence to sequence model.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Python3.6.2-tutorial-zh-CN
?
Download (.md)
# Python3.6.2-tutorial-zh-CN Python 官方文档翻译 A Chinese translation of Python 3.6.2 Tutorial. 自己上班之余翻译的,持续更新中。我看了一下,网上没有特别好的3.6.2的中文文档,就自己翻译一下了。就当自己边翻译边学习了。希望和大家多多交流。 # Python 官方教程 Python 是一门简单易学,强大的编程语言。它具有高级数据结构,而且可以进行简单而高效的的面向对象编程。Python 的优雅的语法和动态类型,加上其解释语言的特性,使它在大部分平台的众多领域内,成为编写脚本和快速应用开发一门理想的语言。 Python 的解释器和可扩展性的标准库的源码或二进制形式,其各大平台的版本都可以在 Python 的[官网](https://www.python.org)免费获取,同时,也可以免费的发布。这个网站也包含了许多免费的第三方 Python 模块的链接。 Python 的解释器可以很简单的使用 C 或 C++ 语言实现的新函数或数据类型来进行扩展。Python 作为一门用户自定义应用扩展程序语言也非常合适。 这篇教程非正式地向读者介绍了 Python 语言和系统的基本概念和特性。它可以帮你方便的实操,但是所有的例子都是独立的,所以这个教程也可以离线阅读。 标准对象和库的详细内容,请查看 [Python 标准库](https://docs.python.org/3/library/index.html#library-index)。[Python语言索引](https://docs.python.org/3/reference/index.html#reference-index) 提供了更多 Python 语言的官方解释。要想编写 C 或 C++ 的扩展,阅读 [扩展和嵌入Python解释器](https://docs.python.org/3/extending/index.html#extending-index) 和 [Python/C API 手册](https://docs.python.org/3/c-api/index.html#c-api-index)。还有一些涉及 Python 更深层次的书。 这个教程并不是对于每个特性,或者每个常用的特性都面面俱到。它介绍了许多 Python 最重要的特性,而且还提供给你这个语言的偏好和风格。在你读过这个教程之后,你将可以阅读和编写 Python 的模块和程序,也可以为你将来学习更多各种各样的 [Python 标准库](https://docs.python.org/3/library/index.html#library-index)做准备。 [术语表](https://docs.python.org/3/glossary.html#glossary)同样也值得浏览一遍。 --- ### [1. 吊你胃口](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap01) ### [2. 使用 Python 解释器](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/tree/master/chap02) - [2.1 调用 Python 解释器](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap02/part02-01.md) - [2.2 解释器及其环境](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap02/part02-02.md) ### [3. Python 语言简介](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/tree/master/chap03) - [3.1 把 Python 当做计算器](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap03/part03-01.md) - [3.2 编程第一步](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap03/part03-02.md) ### [4. 更多流程控制工具(判断和循环)](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/tree/master/chap04) - [4.1 if 语句](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-01.md) - [4.2 for 语句](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-02.md) - [4.3 range() 函数](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-03.md) - [4.4 break, continue 语句、循环语句中的 else 分句](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-04.md) - [4.5 pass 语句](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-05.md) - [4.6 函数的定义](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-06.md) - [4.7 更多关于函数的定义](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-07.md) - [4.8 插曲: 编程风格](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap04/part04-08.md) ### [5. 数据结构](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/tree/master/chap05) - [5.1 深入学习列表](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-01.md) - [5.2 del 语句](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-02.md) - [5.3 元组和序列](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-03.md) - [5.4 集合](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-04.md) - [5.5 字典](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-05.md) - [5.6 循环技术](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-06.md) - [5.7 条件判断](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-07.md) - [5.8 序列与其他类型的比较](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap05/part05-08.md) ### [6. 模块](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap06) - [6.1 模块的更多介绍](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap06/part06-01.md) - [6.2 标准模块](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap06/part06-02.md) - [6.3 dir() 函数](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap06/part06-03.md) - [6.4 包](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap06/part06-04.md) ### [7. 输入和输出](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap07) - [7.1 更复杂的输出格式](https://github.com/yuqingc/Python3.6.2-tutorial-zh-CN/blob/master/chap07/part07-01.md) - 7.2 读写文件 ### [8. 错误和异常]() - 8.1 语法错误 - 8.2 异常 - 8.3 处理异常 - 8.4 引发异常 - 8.5 用户自定义异常 - 8.6 定义清理行为 - 8.7 预定义清理行为 待更新。。。