diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 01a9371e836584b2736baa0fdc610e5e2de734a1..061343bbb136f8fecf456286677455b2e731ea30 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,15 +4,28 @@
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -34,45 +47,47 @@
- {
+ "keyToString": {
+ "Python.01_list列表.executor": "Debug",
+ "Python.01_list删除.executor": "Debug",
+ "Python.01_while循环练习题_求1-100的和.executor": "Debug",
+ "Python.02_list列表的常用操作.executor": "Debug",
+ "Python.03_while循环的基础案例-猜数字.executor": "Debug",
+ "Python.05_while循环的嵌套案例-九九乘法表.executor": "Debug",
+ "Python.05_函数的参数练习案例.executor": "Debug",
+ "Python.05_动态参数.executor": "Debug",
+ "Python.06_for循环练习题-数一数有几个a.executor": "Debug",
+ "Python.06_函数的返回值定义语法.executor": "Debug",
+ "Python.07_for循环的基础语法.executor": "Debug",
+ "Python.08_range语句.executor": "Debug",
+ "Python.09_变量作用域.executor": "Debug",
+ "Python.10_for循环打印九九乘法表.executor": "Debug",
+ "Python.10_变量的作用域.executor": "Debug",
+ "Python.10_局部变量.executor": "Debug",
+ "Python.11_局部变量.executor": "Debug",
+ "Python.12_二维表格.executor": "Debug",
+ "Python.12_循环中断.executor": "Debug",
+ "Python.13_全局修改.executor": "Debug",
+ "Python.test.executor": "Debug",
+ "Python.test_01.executor": "Debug",
+ "Python.test_02.executor": "Debug",
+ "Python.test_03.executor": "Debug",
+ "Python.test_04.executor": "Debug",
+ "Python.test_05.executor": "Debug",
+ "Python.test_06.executor": "Debug",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "git-widget-placeholder": "main",
+ "last_opened_file_path": "/Users/qinyingjie/Documents/python-workspace/python-demo/05_函数进阶",
+ "node.js.detected.package.eslint": "true",
+ "node.js.detected.package.tslint": "true",
+ "node.js.selected.package.eslint": "(autodetect)",
+ "node.js.selected.package.tslint": "(autodetect)",
+ "nodejs_package_manager_path": "npm",
+ "settings.editor.selected.configurable": "configurable.group.appearance",
+ "vue.rearranger.settings.migration": "true"
}
-}]]>
+}
@@ -81,8 +96,15 @@
+
+
+
+
+
+
+
-
+
@@ -106,7 +128,7 @@
-
+
@@ -120,7 +142,7 @@
-
+
@@ -129,7 +151,7 @@
-
+
@@ -143,7 +165,7 @@
-
+
@@ -152,7 +174,7 @@
-
+
@@ -161,12 +183,12 @@
-
+
-
+
@@ -175,7 +197,7 @@
-
+
@@ -184,12 +206,12 @@
-
+
-
+
@@ -198,7 +220,7 @@
-
+
@@ -207,12 +229,12 @@
-
+
-
+
@@ -223,11 +245,11 @@
+
+
+
+
-
-
-
-
@@ -252,7 +274,7 @@
-
+
@@ -302,7 +324,23 @@
1722329561732
-
+
+
+ 1722331866815
+
+
+
+ 1722331866815
+
+
+
+ 1722331876443
+
+
+
+ 1722331876443
+
+
@@ -314,7 +352,8 @@
-
+
+
@@ -324,17 +363,18 @@
-
+
-
+
+
-
+
diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/12_\344\272\214\347\273\264\350\241\250\346\240\274.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/12_\344\272\214\347\273\264\350\241\250\346\240\274.py"
new file mode 100644
index 0000000000000000000000000000000000000000..0909c41ac2bbdebd112b456380ae8f9f3820e159
--- /dev/null
+++ "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/12_\344\272\214\347\273\264\350\241\250\346\240\274.py"
@@ -0,0 +1,10 @@
+# 定义行数和列数
+rows = 3
+cols = 3
+
+# 使用列表推导式生成二维数组
+matrix = [[(i * cols) + j + 1 for j in range(cols)] for i in range(rows)]
+
+# 打印生成的二维数组,每个子数组后添加换行符
+for row in matrix:
+ print(row)
\ No newline at end of file
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_list\345\210\227\350\241\250.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/01_list\345\210\227\350\241\250.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/01_list\345\210\227\350\241\250.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/01_list\345\210\227\350\241\250.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_list\345\210\227\350\241\250\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/02_list\345\210\227\350\241\250\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/02_list\345\210\227\350\241\250\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/02_list\345\210\227\350\241\250\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_list\345\210\240\351\231\244.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/02_list\345\210\240\351\231\244.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/01_list\345\210\240\351\231\244.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/02_list\345\210\240\351\231\244.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/03_list\345\210\227\350\241\250\345\270\270\347\224\250\346\223\215\344\275\234\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/03_list\345\210\227\350\241\250\345\270\270\347\224\250\346\223\215\344\275\234\350\257\276\345\220\216\347\273\203\344\271\240.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/03_list\345\210\227\350\241\250\345\270\270\347\224\250\346\223\215\344\275\234\350\257\276\345\220\216\347\273\203\344\271\240.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/03_list\345\210\227\350\241\250\345\270\270\347\224\250\346\223\215\344\275\234\350\257\276\345\220\216\347\273\203\344\271\240.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/04_list\345\210\227\350\241\250\347\232\204\345\276\252\347\216\257.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/05_list\345\210\227\350\241\250\347\232\204\345\276\252\347\216\257.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/04_list\345\210\227\350\241\250\347\232\204\345\276\252\347\216\257.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/05_list\345\210\227\350\241\250\347\232\204\345\276\252\347\216\257.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/test.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test.py"
similarity index 98%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/test.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test.py"
index bfead5181d3159b2cc2d1b9c55a7465b943afe6a..7e82ef2e28e5eaf40ed0d5797ca55508a11607d7 100644
--- "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/test.py"
+++ "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test.py"
@@ -1,4 +1,3 @@
-
my_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
new_list = []
i = 0
@@ -8,5 +7,3 @@ while i < len(my_list):
i += 1
print(f"偶数形成的新列表:{new_list}")
-
-
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/test_01.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test_01.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/test_01.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test_01.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/test_02.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test_02.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/test_02.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01-\345\210\227\350\241\250/test_02.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/08_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/08_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/01_\345\272\217\345\210\227\345\222\214\345\210\207\347\211\207.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/05_tuple\345\205\203\347\273\204.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/02-\345\205\203\347\273\204/05_tuple\345\205\203\347\273\204.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/05_tuple\345\205\203\347\273\204.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/02-\345\205\203\347\273\204/05_tuple\345\205\203\347\273\204.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/09_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/09_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/02_\345\272\217\345\210\227\345\210\207\347\211\207\350\257\276\345\220\216\347\273\203\344\271\240.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/06_\345\255\227\347\254\246\344\270\262.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/06_\345\255\227\347\254\246\344\270\262.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/06_\345\255\227\347\254\246\344\270\262.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/06_\345\255\227\347\254\246\344\270\262.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/07_\345\255\227\347\254\246\344\270\262\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/07_\345\255\227\347\254\246\344\270\262\350\257\276\345\220\216\347\273\203\344\271\240.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/07_\345\255\227\347\254\246\344\270\262\350\257\276\345\220\216\347\273\203\344\271\240.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/07_\345\255\227\347\254\246\344\270\262\350\257\276\345\220\216\347\273\203\344\271\240.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/16_\345\255\227\347\254\246\344\270\262\345\244\247\345\260\217\346\257\224\350\276\203.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/16_\345\255\227\347\254\246\344\270\262\345\244\247\345\260\217\346\257\224\350\276\203.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/16_\345\255\227\347\254\246\344\270\262\345\244\247\345\260\217\346\257\224\350\276\203.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/03-\345\255\227\347\254\246\344\270\262/16_\345\255\227\347\254\246\344\270\262\345\244\247\345\260\217\346\257\224\350\276\203.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/15_\346\225\260\346\215\256\345\256\271\345\231\250\351\200\232\347\224\250\345\212\237\350\203\275.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/03_\346\225\260\346\215\256\345\256\271\345\231\250\351\200\232\347\224\250\345\212\237\350\203\275.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/15_\346\225\260\346\215\256\345\256\271\345\231\250\351\200\232\347\224\250\345\212\237\350\203\275.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/03_\346\225\260\346\215\256\345\256\271\345\231\250\351\200\232\347\224\250\345\212\237\350\203\275.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/10_\351\233\206\345\220\210.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/04-\351\233\206\345\220\210/10_\351\233\206\345\220\210.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/10_\351\233\206\345\220\210.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/04-\351\233\206\345\220\210/10_\351\233\206\345\220\210.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/11_\351\233\206\345\220\210\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/04-\351\233\206\345\220\210/11_\351\233\206\345\220\210\350\257\276\345\220\216\347\273\203\344\271\240.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/11_\351\233\206\345\220\210\350\257\276\345\220\216\347\273\203\344\271\240.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/04-\351\233\206\345\220\210/11_\351\233\206\345\220\210\350\257\276\345\220\216\347\273\203\344\271\240.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/12_\345\255\227\345\205\270.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/12_\345\255\227\345\205\270.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/12_\345\255\227\345\205\270.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/12_\345\255\227\345\205\270.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/13_\345\255\227\345\205\270\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/13_\345\255\227\345\205\270\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/13_\345\255\227\345\205\270\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/13_\345\255\227\345\205\270\347\232\204\345\270\270\347\224\250\346\223\215\344\275\234.py"
diff --git "a/06_\346\225\260\346\215\256\345\256\271\345\231\250/14_\345\255\227\345\205\270\350\257\276\345\220\216\347\273\203\344\271\240.py" "b/06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/14_\345\255\227\345\205\270\350\257\276\345\220\216\347\273\203\344\271\240.py"
similarity index 100%
rename from "06_\346\225\260\346\215\256\345\256\271\345\231\250/14_\345\255\227\345\205\270\350\257\276\345\220\216\347\273\203\344\271\240.py"
rename to "06_\346\225\260\346\215\256\345\256\271\345\231\250/05-\345\255\227\345\205\270/14_\345\255\227\345\205\270\350\257\276\345\220\216\347\273\203\344\271\240.py"