|
19 | 19 |
|
20 | 20 | ## 第三部分 语法和句法
|
21 | 21 |
|
22 |
| -- 第10章 Python语句简介 |
23 |
| -- 第11章 赋值、表达式和打印 |
24 |
| -- 第12章 if测试和语法规则 |
25 |
| -- 第13章 while和for循环 |
26 |
| -- 第14章 迭代器和解析,第一部分 |
27 |
| -- 第15章 文档 |
| 22 | +- [第10章 Python语句简介](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter10/chapter10-Python%E8%AF%AD%E5%8F%A5%E7%AE%80%E4%BB%8B.ipynb) |
| 23 | +- [第11章 赋值、表达式和打印](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter11/chapter11-%E8%B5%8B%E5%80%BC%E3%80%81%E8%A1%A8%E8%BE%BE%E5%BC%8F%E5%92%8C%E6%89%93%E5%8D%B0.ipynb) |
| 24 | +- [第12章 if测试和语法规则](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter12/chapter12-if%E6%B5%8B%E8%AF%95%E5%92%8C%E8%AF%AD%E6%B3%95%E8%A7%84%E5%88%99.ipynb) |
| 25 | +- [第13章 while和for循环](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter13/chapter13-while%E5%92%8Cfor%E5%BE%AA%E7%8E%AF.ipynb) |
| 26 | +- [第14章 迭代器和解析,第一部分](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter14/chapter14-%E8%BF%AD%E4%BB%A3%E5%99%A8%E5%92%8C%E8%A7%A3%E6%9E%90%EF%BC%8C%E7%AC%AC%E4%B8%80%E9%83%A8%E5%88%86.ipynb) |
| 27 | +- [第15章 文档](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter15/chapter15-%E6%96%87%E6%A1%A3.ipynb) |
28 | 28 |
|
29 | 29 | ## 第四部分 函数
|
30 | 30 |
|
31 |
| -- 第16章 函数基础 |
32 |
| -- 第17章 作用域 |
33 |
| -- 第18章 参数 |
34 |
| -- 第19章 函数的高级话题 |
35 |
| -- 第20章 迭代和解析,第二部分 |
| 31 | +- [第16章 函数基础](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter16/%E7%AC%AC16%E7%AB%A0-%E5%87%BD%E6%95%B0%E5%9F%BA%E7%A1%80.ipynb) |
| 32 | +- [第17章 作用域](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter17/chapter17-%E4%BD%9C%E7%94%A8%E5%9F%9F.ipynb) |
| 33 | +- [第18章 参数](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter18/chapter18-%E5%8F%82%E6%95%B0.ipynb) |
| 34 | +- [第19章 函数的高级话题](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter19/chapter19-%E5%87%BD%E6%95%B0%E7%9A%84%E9%AB%98%E7%BA%A7%E8%AF%9D%E9%A2%98.ipynb) |
| 35 | +- [第20章 迭代和解析,第二部分](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter20/chapter20-%E8%BF%AD%E4%BB%A3%E5%92%8C%E8%A7%A3%E6%9E%90%EF%BC%8C%E7%AC%AC%E4%BA%8C%E9%83%A8%E5%88%86.ipynb) |
36 | 36 |
|
37 | 37 | ## 第五部分 模块
|
38 | 38 |
|
39 |
| -- 第21章 模块:宏伟蓝图 |
40 |
| -- 第22章 模块代码编写基础 |
41 |
| -- 第23章 模块包 |
42 |
| -- 第24章 高级模块话题 |
| 39 | +- [第21章 模块:宏伟蓝图](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter21/%E7%AC%AC21%E7%AB%A0-%E6%A8%A1%E5%9D%97%EF%BC%9A%E5%AE%8F%E4%BC%9F%E8%93%9D%E5%9B%BE.ipynb) |
| 40 | +- [第22章 模块代码编写基础](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter22/chapter22-%E6%A8%A1%E5%9D%97%E4%BB%A3%E7%A0%81%E7%BC%96%E5%86%99%E5%9F%BA%E7%A1%80.ipynb) |
| 41 | +- [第23章 模块包](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter23/chapter23-%E6%A8%A1%E5%9D%97%E5%8C%85.ipynb) |
| 42 | +- [第24章 高级模块话题](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter24/chapter24-%E9%AB%98%E7%BA%A7%E6%A8%A1%E5%9D%97%E8%AF%9D%E9%A2%98.ipynb) |
43 | 43 |
|
44 | 44 | ## 第六部分 类和OOP
|
45 | 45 |
|
46 |
| -- 第25章 OOP:宏伟蓝图 |
47 |
| -- 第26章 类代码编写基础 |
48 |
| -- 第27章 更多实例 |
49 |
| -- 第28章 类代码编写细节 |
50 |
| -- 第29章 运算符重载 |
51 |
| -- 第30章 累的设计 |
52 |
| -- 第31章 类的高级主题 |
| 46 | +- [第25章 OOP:宏伟蓝图](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter25/chapter25-OOP%EF%BC%9A%E5%AE%8F%E4%BC%9F%E8%93%9D%E5%9B%BE.ipynb) |
| 47 | +- [第26章 类代码编写基础](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter26/chapter26-%E7%B1%BB%E4%BB%A3%E7%A0%81%E7%BC%96%E5%86%99%E5%9F%BA%E7%A1%80.ipynb) |
| 48 | +- [第27章 更多实例](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter27/chapter27-%E6%9B%B4%E5%A4%9A%E5%AE%9E%E4%BE%8B.ipynb) |
| 49 | +- [第28章 类代码编写细节](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter28/chapter28-%E7%B1%BB%E4%BB%A3%E7%A0%81%E7%BC%96%E5%86%99%E7%BB%86%E8%8A%82.ipynb) |
| 50 | +- [第29章 运算符重载](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter29/chapter29-%E8%BF%90%E7%AE%97%E7%AC%A6%E9%87%8D%E8%BD%BD.ipynb) |
| 51 | +- [第30章 累的设计](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter30/chapter30-%E7%B1%BB%E7%9A%84%E8%AE%BE%E8%AE%A1.ipynb) |
| 52 | +- [第31章 类的高级主题](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter31/chapter31-%E7%B1%BB%E7%9A%84%E9%AB%98%E7%BA%A7%E4%B8%BB%E9%A2%98.ipynb) |
53 | 53 |
|
54 | 54 | ## 第七部分 异常和工具
|
55 | 55 |
|
56 |
| -- 第32章 异常基础 |
57 |
| -- 第33章 异常编码细节 |
58 |
| -- 第34章 异常对象 |
| 56 | +- [第32章 异常基础](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter32/chapter32-%E5%BC%82%E5%B8%B8%E5%9F%BA%E7%A1%80.ipynb) |
| 57 | +- [第33章 异常编码细节](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter33/chapter33-%E5%BC%82%E5%B8%B8%E7%BC%96%E7%A0%81%E7%BB%86%E8%8A%82.ipynb) |
| 58 | +- [第34章 异常对象](https://github.com/xiongzwfire/Learning-Python-Notes/blob/master/chapter34/chapter34-%E5%BC%82%E5%B8%B8%E5%AF%B9%E8%B1%A1.ipynb) |
| 59 | + |
0 commit comments