From c63a36e4fe4b9e9686e5f32c39271a78d36a22e5 Mon Sep 17 00:00:00 2001 From: Lex Li Date: Sun, 16 Sep 2018 20:56:13 +0800 Subject: [PATCH] =?UTF-8?q?Update=20=E7=AC=AC03=E7=AB=A0=20Python=E7=9A=84?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=BB=93=E6=9E=84=E3=80=81=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E5=92=8C=E6=96=87=E4=BB=B6.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “得”改为“的” --- ...\207\275\346\225\260\345\222\214\346\226\207\344\273\266.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/\347\254\25403\347\253\240 Python\347\232\204\346\225\260\346\215\256\347\273\223\346\236\204\343\200\201\345\207\275\346\225\260\345\222\214\346\226\207\344\273\266.md" "b/\347\254\25403\347\253\240 Python\347\232\204\346\225\260\346\215\256\347\273\223\346\236\204\343\200\201\345\207\275\346\225\260\345\222\214\346\226\207\344\273\266.md" index 9a81db8..afdc612 100644 --- "a/\347\254\25403\347\253\240 Python\347\232\204\346\225\260\346\215\256\347\273\223\346\236\204\343\200\201\345\207\275\346\225\260\345\222\214\346\226\207\344\273\266.md" +++ "b/\347\254\25403\347\253\240 Python\347\232\204\346\225\260\346\215\256\347\273\223\346\236\204\343\200\201\345\207\275\346\225\260\345\222\214\346\226\207\344\273\266.md" @@ -167,7 +167,7 @@ In [33]: a, b, *_ = values ``` ## tuple方法 -因为元组的大小和内容不能修改,它的实例方法都很轻量。其中一个很有用的就是``count``(也适用于列表),它可以统计某个值得出现频率: +因为元组的大小和内容不能修改,它的实例方法都很轻量。其中一个很有用的就是``count``(也适用于列表),它可以统计某个值的出现频率: ```python In [34]: a = (1, 2, 2, 2, 3, 4, 2)