Skip to content

Commit 590e2c1

Browse files
committed
Fixed the issue where the Chinese readme link could not be redirected correctly
1 parent 8ed841e commit 590e2c1

File tree

1 file changed

+29
-27
lines changed

1 file changed

+29
-27
lines changed

Chinese/README.md

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@
99
| 05 | [列表](./05_lists.md) |
1010
| 06 | [元组](./06_tuples.md) |
1111
| 07 | [集合](./07_sets.md) |
12-
| 08 | [字典](./08_Day_Dictionaries/08_dictionaries.md) |
13-
| 09 | [条件](./09_Day_Conditionals/09_conditionals.md) |
14-
| 10 | [循环](./10_Day_Loops/10_loops.md) |
15-
| 11 | [函数](./11_Day_Functions/11_functions.md) |
16-
| 12 | [模块](./12_Day_Modules/12_modules.md) |
17-
| 13 | [列表解析](./13_Day_List_comprehension/13_list_comprehension.md) |
18-
| 14 | [高阶函数](./14_Day_Higher_order_functions/14_higher_order_functions.md) |
19-
| 15 | [类型错误](./15_Day_Python_type_errors/15_python_type_errors.md) |
20-
| 16 | [Python 日期时间](./16_Day_Python_date_time/16_python_datetime.md) |
21-
| 17 | [异常处理](./17_Day_Exception_handling/17_exception_handling.md) |
22-
| 18 | [正则表达式](./18_Day_Regular_expressions/18_regular_expressions.md) |
23-
| 19 | [文件处理](./19_Day_File_handling/19_file_handling.md) |
24-
| 20 | [包管理器](./20_Day_Python_package_manager/20_python_package_manager.md) |
25-
| 21 | [类和对象](./21_Day_Classes_and_objects/21_classes_and_objects.md) |
26-
| 22 | [网页抓取](./22_Day_Web_scraping/22_web_scraping.md) |
27-
| 23 | [虚拟环境](./23_Day_Virtual_environment/23_virtual_environment.md) |
28-
| 24 | [统计](./24_Day_Statistics/24_statistics.md) |
29-
| 25 | [Pandas](./25_Day_Pandas/25_pandas.md) |
30-
| 26 | [Python 网页](./26_Day_Python_web/26_python_web.md) |
31-
| 27 | [Python 与 MongoDB](./27_Day_Python_with_mongodb/27_python_with_mongodb.md) |
32-
| 28 | [API](./28_Day_API/28_API.md) |
33-
| 29 | [构建 API](./29_Day_Building_API/29_building_API.md) |
34-
| 30 | [结论](./30_Day_Conclusions/30_conclusions.md) |
12+
| 08 | [字典](./08_dictionaries.md) |
13+
| 09 | [条件](./09_conditionals.md) |
14+
| 10 | [循环](./10_loops.md) |
15+
| 11 | [函数](./11_functions.md) |
16+
| 12 | [模块](./12_modules.md) |
17+
| 13 | [列表解析](./13_list_comprehension.md) |
18+
| 14 | [高阶函数](./14_higher_order_functions.md) |
19+
| 15 | [类型错误](./15_python_type_errors.md) |
20+
| 16 | [Python 日期时间](./16_python_datetime.md) |
21+
| 17 | [异常处理](./17_exception_handling.md) |
22+
| 18 | [正则表达式](./18_regular_expressions.md) |
23+
| 19 | [文件处理](./19_file_handling.md) |
24+
| 20 | [包管理器](./20_python_package_manager.md) |
25+
| 21 | [类和对象](./21_classes_and_objects.md) |
26+
| 22 | [网页抓取](./22_web_scraping.md) |
27+
| 23 | [虚拟环境](./23_virtual_environment.md) |
28+
| 24 | [统计](./24_statistics.md) |
29+
| 25 | [Pandas](./25_pandas.md) |
30+
| 26 | [Python 网页](./26_python_web.md) |
31+
| 27 | [Python 与 MongoDB](./27_python_with_mongodb.md) |
32+
| 28 | [API](./28_API.md) |
33+
| 29 | [构建 API](./29_building_API.md) |
34+
| 30 | [结论](./30_conclusions.md) |
3535

3636
🧡🧡🧡 快乐编码 🧡🧡🧡
3737

@@ -61,10 +61,10 @@
6161
![30DaysOfPython](.././images/[email protected])
6262

6363
- [🐍 30 天 Python](#-30-天-python)
64-
- [📘 第 1 天](#第-1-天)
65-
- [欢迎](#欢迎)
64+
- [📘 第 1 天](#-第-1-天)
65+
- [欢迎](#欢迎)
6666
- [介绍](#介绍)
67-
- [为什么选择 Python?](#为什么选择-python)
67+
- [为什么选择 Python](#为什么选择-python)
6868
- [环境设置](#环境设置)
6969
- [安装 Python](#安装-python)
7070
- [Python Shell](#python-shell)
@@ -74,6 +74,8 @@
7474
- [Python 语法](#python-语法)
7575
- [Python 缩进](#python-缩进)
7676
- [注释](#注释)
77+
- [示例:单行注释](#示例单行注释)
78+
- [示例:多行注释,称为文档字符串](#示例多行注释称为文档字符串)
7779
- [数据类型](#数据类型)
7880
- [数字](#数字)
7981
- [字符串](#字符串)
@@ -84,7 +86,7 @@
8486
- [集合](#集合)
8587
- [检查数据类型](#检查数据类型)
8688
- [Python 文件](#python-文件)
87-
- [💻 练习 - 第 1 天](#-练习-第-1-天)
89+
- [💻 练习 - 第 1 天](#-练习---第-1-天)
8890
- [练习:等级 1](#练习等级-1)
8991
- [练习:等级 2](#练习等级-2)
9092
- [练习:等级 3](#练习等级-3)

0 commit comments

Comments
 (0)