From ecc0c6eb0a7de03de5724b5d28b5eaf29f85f1e1 Mon Sep 17 00:00:00 2001 From: feilong Date: Fri, 19 Nov 2021 18:26:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9B8=E9=A2=98+fix1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../style.md" | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git "a/data/1.python\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/6.\347\274\226\347\240\201\350\247\204\350\214\203/style.md" "b/data/1.python\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/6.\347\274\226\347\240\201\350\247\204\350\214\203/style.md" index 6ac14db..1f3d37b 100644 --- "a/data/1.python\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/6.\347\274\226\347\240\201\350\247\204\350\214\203/style.md" +++ "b/data/1.python\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/6.\347\274\226\347\240\201\350\247\204\350\214\203/style.md" @@ -90,6 +90,19 @@ if __name__ == '__main__': i += 1 ``` +预期的输出结果为: +```bash +单词排行榜 +-------- +1. 单词:style, 词频:20 +2. 单词:guide,, 词频:13 +3. 单词:to, 词频:9 +4. 单词:python, 词频:8 +5. 单词:google, 词频:7 +``` + +以下选项是对代码中`TODO`部分的多种实现,你能找出以下实现错误的选项吗? + ## template ```python @@ -158,7 +171,6 @@ This project holds the C++ Style Guide, C# Style Guide, Swift Style Guide, Objec print(f'{i+1}. 单词:{word}, 词频:{count}') i += 1 ``` - ## 答案 ```python -- GitLab