From ff6830c619f72874641683c37ca2a7a590b60745 Mon Sep 17 00:00:00 2001 From: vnotepad Date: Fri, 19 Aug 2022 18:23:48 +0800 Subject: [PATCH] =?UTF-8?q?Update=20Python=E5=BF=AB=E9=80=9F=E5=85=A5?= =?UTF-8?q?=E9=97=A8=E5=92=8C=E6=9F=A5=E8=AF=A2.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...5\245\351\227\250\345\222\214\346\237\245\350\257\242.md" | 5 +++++ 1 file changed, 5 insertions(+) diff --git "a/docs/Python\345\277\253\351\200\237\345\205\245\351\227\250\345\222\214\346\237\245\350\257\242.md" "b/docs/Python\345\277\253\351\200\237\345\205\245\351\227\250\345\222\214\346\237\245\350\257\242.md" index e0c3521..f6b0611 100644 --- "a/docs/Python\345\277\253\351\200\237\345\205\245\351\227\250\345\222\214\346\237\245\350\257\242.md" +++ "b/docs/Python\345\277\253\351\200\237\345\205\245\351\227\250\345\222\214\346\237\245\350\257\242.md" @@ -263,6 +263,11 @@ while count > 0: for i in [1, 2, 3]: print(i) + + +for i in range(10): + print(i) + ``` ## 10\. 迭代器与生成器 -- GitLab