闯关提交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记录
运行结果
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 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