From 399a6c53e553507ad6c36ed84a1302d82666778b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=A6=E8=8B=B1=E6=9D=B0?= Date: Tue, 30 Jul 2024 17:31:06 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...5_\345\212\250\346\200\201\345\217\202\346\225\260.py" | 8 ++++++++ .../06_lambda.py" | 0 .../07_input\344\275\277\347\224\250.py" | 0 ...8_\345\205\250\345\261\200\345\217\230\351\207\217.py" | 0 ...8_\345\261\200\351\203\250\345\217\230\351\207\217.py" | 0 ...9_\344\270\215\345\256\232\345\217\202\346\225\260.py" | 0 ...45\345\207\275\346\225\260\345\217\202\346\225\260.py" | 0 .../11_range\344\275\277\347\224\250.py" | 0 8 files changed, 8 insertions(+) create mode 100644 "05_\345\207\275\346\225\260\350\277\233\351\230\266/05_\345\212\250\346\200\201\345\217\202\346\225\260.py" rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/06_lambda.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_01.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/07_input\344\275\277\347\224\250.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_03.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\205\250\345\261\200\345\217\230\351\207\217.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_02.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\261\200\351\203\250\345\217\230\351\207\217.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_04.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/09_\344\270\215\345\256\232\345\217\202\346\225\260.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_05.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/10_\344\274\240\345\205\245\345\207\275\346\225\260\345\217\202\346\225\260.py" (100%) rename "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_06.py" => "05_\345\207\275\346\225\260\350\277\233\351\230\266/11_range\344\275\277\347\224\250.py" (100%) diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/05_\345\212\250\346\200\201\345\217\202\346\225\260.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/05_\345\212\250\346\200\201\345\217\202\346\225\260.py" new file mode 100644 index 0000000..7511b2f --- /dev/null +++ "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/05_\345\212\250\346\200\201\345\217\202\346\225\260.py" @@ -0,0 +1,8 @@ +def func(a, b=2, *args, **kwargs): + print(a) + print(b) + print(args) + print(kwargs) + + +func(1, 3, 4, 5, name="Eve", job="Doctor") diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/06_lambda.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/06_lambda.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_01.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/07_input\344\275\277\347\224\250.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_01.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/07_input\344\275\277\347\224\250.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_03.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\205\250\345\261\200\345\217\230\351\207\217.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_03.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\205\250\345\261\200\345\217\230\351\207\217.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_02.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\261\200\351\203\250\345\217\230\351\207\217.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_02.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/08_\345\261\200\351\203\250\345\217\230\351\207\217.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_04.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/09_\344\270\215\345\256\232\345\217\202\346\225\260.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_04.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/09_\344\270\215\345\256\232\345\217\202\346\225\260.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_05.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/10_\344\274\240\345\205\245\345\207\275\346\225\260\345\217\202\346\225\260.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_05.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/10_\344\274\240\345\205\245\345\207\275\346\225\260\345\217\202\346\225\260.py" diff --git "a/05_\345\207\275\346\225\260\350\277\233\351\230\266/test_06.py" "b/05_\345\207\275\346\225\260\350\277\233\351\230\266/11_range\344\275\277\347\224\250.py" similarity index 100% rename from "05_\345\207\275\346\225\260\350\277\233\351\230\266/test_06.py" rename to "05_\345\207\275\346\225\260\350\277\233\351\230\266/11_range\344\275\277\347\224\250.py" -- GitLab