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. 可以点下键到下一步
相关推荐
申雪菱5 分钟前
Scheme语言的数据挖掘
开发语言·后端·golang
程序员一诺9 分钟前
【Flask开发】嘿马文学web完整flask项目第1篇:简介【附代码文档】
后端·python·flask·框架
Aerkui15 分钟前
Python列表(List)深度解析
开发语言·python
Bruce_Liuxiaowei17 分钟前
基于Flask的MBA考生成绩查询系统设计与实现
后端·python·flask
啊阿狸不会拉杆18 分钟前
第二十章:Python-Matplotlib库实现函数可视化
开发语言·python·matplotlib
欧宸雅21 分钟前
HTML语言的空值合并
开发语言·后端·golang
nlog3n36 分钟前
Java外观模式详解
java·开发语言·外观模式
方瑾瑜1 小时前
Visual Basic语言的物联网
开发语言·后端·golang
浪里小妖龙1 小时前
网络爬虫的基础知识
python
晓13131 小时前
第七章 Python基础进阶-异常、模块与包(其五)
人工智能·python