diff --git a/SUMMARY.md b/SUMMARY.md new file mode 100644 index 0000000000000000000000000000000000000000..c3018a926cd8936a006cdf974a7c1714afe71eab --- /dev/null +++ b/SUMMARY.md @@ -0,0 +1,67 @@ ++ [初级 Python](docs/2.md) + + [python 入门](docs/3.md) + + [安装 Python3](docs/4.md) + + [运行 python 程序](docs/5.md) + + [数据类型和变量](docs/6.md) + + [Python 数字](docs/7.md) + + [Python 字符串](docs/8.md) + + [Python 列表](docs/9.md) + + [Python 字典](docs/10.md) + + [Python 元组](docs/11.md) + + [数据类型转换](docs/12.md) + + [Python 控制语句](docs/13.md) + + [Python 函数](docs/14.md) + + [Python 循环](docs/15.md) + + [Python 数学函数](docs/16.md) + + [Python 生成随机数](docs/17.md) + + [Python 文件处理](docs/18.md) + + [Python 对象和类](docs/19.md) + + [Python 运算符重载](docs/20.md) + + [Python 继承与多态](docs/21.md) + + [Python 异常处理](docs/22.md) + + [Python 模块](docs/23.md) ++ [高级 Python](docs/24.md) + + [Python `*args`和`**kwargs`](docs/25.md) + + [Python 生成器](docs/26.md) + + [Python 正则表达式](docs/27.md) + + [使用 PIP 在 python 中安装包](docs/28.md) + + [Python `virtualenv`指南](docs/29.md) + + [Python 递归函数](docs/30.md) + + [`__name__ == "__main__"`是什么?](docs/31.md) + + [Python Lambda 函数](docs/32.md) + + [Python 字符串格式化](docs/33.md) ++ [Python 内置函数和方法](docs/34.md) + + [Python `abs()`函数](docs/35.md) + + [Python `bin()`函数](docs/36.md) + + [Python `id()`函数](docs/37.md) + + [Python `map()`函数](docs/38.md) + + [Python `zip()`函数](docs/39.md) + + [Python `filter()`函数](docs/40.md) + + [Python `reduce()`函数](docs/41.md) + + [Python `sorted()`函数](docs/42.md) + + [Python `enumerate()`函数](docs/43.md) + + [Python `reversed()`函数](docs/44.md) + + [Python `range()`函数](docs/45.md) + + [Python `sum()`函数](docs/46.md) + + [Python `max()`函数](docs/47.md) + + [Python `min()`函数](docs/48.md) + + [Python `eval()`函数](docs/49.md) + + [Python `len()`函数](docs/50.md) + + [Python `ord()`函数](docs/51.md) + + [Python `chr()`函数](docs/52.md) + + [Python `any()`函数](docs/53.md) + + [Python `all()`函数](docs/54.md) + + [Python `globals()`函数](docs/55.md) + + [Python `locals()`函数](docs/56.md) ++ [数据库访问](docs/57.md) + + [安装 Python MySQLdb](docs/58.md) + + [连接到数据库](docs/59.md) + + [MySQLdb 获取结果](docs/60.md) + + [插入行](docs/61.md) + + [处理错误](docs/62.md) + + [使用`fetchone()`和`fetchmany()`获取记录](docs/63.md) ++ [常见做法](docs/64.md) + + [Python:如何读取和写入文件](docs/65.md) + + [Python:如何读取和写入 CSV 文件](docs/66.md) + + [用 Python 读写 JSON](docs/67.md) + + [用 Python 转储对象](docs/68.md) diff --git a/docs/2.md b/docs/2.md index 787c56d9f4e8a8d529d4350079a3f4e89c2f5d07..c38e747f8a8807c71366edbc4ba743a2ebb6ede8 100644 --- a/docs/2.md +++ b/docs/2.md @@ -1 +1 @@ -# 开始使用 Python \ No newline at end of file +# 初级 Python \ No newline at end of file diff --git a/docs/24.md b/docs/24.md index 59daf15c6b046e9d45a12a33dfe94895e85f586b..f0a0274a8d5ee07da5ca862bfec5d41ecc021501 100644 --- a/docs/24.md +++ b/docs/24.md @@ -1 +1 @@ -# 进阶 Python \ No newline at end of file +# 高级 Python \ No newline at end of file