From 109351046bb4f3baa25db58ddf895995842e4825 Mon Sep 17 00:00:00 2001 From: ysl2 Date: Mon, 12 Apr 2021 18:18:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9total=E4=B8=BAresult?= 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