From 887ab45efe6af33070e3a6c1c49037589ca390c5 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Tue, 8 Dec 2020 16:56:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E4=BA=86=E7=AC=AC20=E8=AF=BE?= =?UTF-8?q?=E7=9A=84=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\225\260\344\275\277\347\224\250\350\277\233\351\230\266.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\347\254\254020\350\257\276\357\274\232\345\207\275\346\225\260\344\275\277\347\224\250\350\277\233\351\230\266.md" "b/\347\254\254020\350\257\276\357\274\232\345\207\275\346\225\260\344\275\277\347\224\250\350\277\233\351\230\266.md" index c158f90..f42e708 100644 --- "a/\347\254\254020\350\257\276\357\274\232\345\207\275\346\225\260\344\275\277\347\224\250\350\277\233\351\230\266.md" +++ "b/\347\254\254020\350\257\276\357\274\232\345\207\275\346\225\260\344\275\277\347\224\250\350\277\233\351\230\266.md" @@ -61,7 +61,7 @@ def calc(*args, **kwargs): result += arg for value in kwargs.values(): result += value - return total + return result print(calc()) # 0