Python 基础知识

Python实现wordcount

import re
from collections import defaultdict

def wordcount(text):
    words = re.findall(r'\b\w+\b', text.lower())
    
    word_count = defaultdict(int)
    for word in words:
        word_count[word] += 1
    
    return dict(word_count)

text = """Got this panda plush toy for my daughter's birthday,
who loves it and takes it everywhere. It's soft and
super cute, and its face has a friendly look. It's
a bit small for what I paid though. I think there
might be other options that are bigger for the
same price. It arrived a day earlier than expected,
so I got to play with it myself before I gave it
to her."""

result = wordcount(text)
print(result)

debug

debug笔记

1. 需要下载按照扩展插件
2. 需要创建配置文件
3. 需要在代码左边点个点
4. 可以点下键到下一步
相关推荐
非凡自我_成功12 分钟前
关于C语言初步的一些基础知识整理(2)
c语言·开发语言
Toormi12 分钟前
Python实现一个简单的 HTTP echo 服务器
服务器·python·http
莲动渔舟19 分钟前
Python自学 - 解析入门(一种特殊循环)
开发语言·python
码农小菲25 分钟前
vue3-dom-diff算法
开发语言·javascript·算法
仰望星空的尘埃29 分钟前
线上go内存泄漏分析实战
开发语言·后端·golang·web服务·内存泄漏分析
pchmi32 分钟前
C# OpenCV机器视觉:双目视觉-深度估计
人工智能·opencv·计算机视觉·c#
摸鱼也很难43 分钟前
php反序列化进阶 && CVE (__wakeup的绕过)&&属性类型特征 && 字符串的逃逸
开发语言·php·buuctf·php反序列化
凡人的AI工具箱1 小时前
每天40分玩转Django:Django实战 - 在线打印服务系统
网络·数据库·后端·python·django
神的孩子都在歌唱1 小时前
你已经分清JAVA中JVM、JDK与JRE的作用和关系了吗?
java·开发语言·jvm
knighthood20011 小时前
xml格式化(1):使用python的xml库实现自闭合标签
android·xml·python