任务: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记录
运行结果
标签:02,defaultdict,word,words,text,count,提交,闯关 From: https://www.cnblogs.com/cxc1357/p/18417711