闯关提交02

任务:Python实现wordcount

 1 import re
 2 from collections import defaultdict
 3 
 4 def wordcount(text):
 5     # 将文本转换为小写
 6     text = text.lower()
 7     
 8     # 使用正则表达式分割单词
 9     words = re.findall(r'\b\w+\b', text)
10     
11     # 使用 defaultdict 来计数
12     word_count = defaultdict(int)
13     
14     # 统计每个单词的出现次数
15     for word in words:
16         word_count[word] += 1
17     
18     # 将 defaultdict 转换为普通字典并返回
19     return dict(word_count)

任务:Vscode连接InternStudio debug笔记

debug记录

 运行结果

 

posted @ 2024-09-17 23:10  cxc1357  阅读(5)  评论(0编辑  收藏  举报