闯关提交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 @   cxc1357  阅读(7)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
历史上的今天:
2022-09-17 [bug] bash: kafka-server-start.sh: command not found...
2020-09-17 [Python] Virtualenv 使用
2020-09-17 [Python] 安装pip
2020-09-17 [bug] python3 pip 安装 MarkupSafe==1.0 失败:ImportError:cannot import name 'Feature' from 'setpools'
2020-09-17 [bug] Python Virtualenv 安装失败:ERROR: Cannot uninstall 'filelock'.
2020-09-17 [DB] mysql windows 安装
2020-09-17 [bug] 安装MySQL8.0.15 失败,提示This application requires Visual Studio 2015 x64 Redistributable
点击右上角即可分享
微信分享提示