书生·浦语实战营第三期入门(二)

书生·浦语实战营第三期入门部分(Python)

任务描述:

  1. Python实现wordcount
  2. Vscode连接InternStudio debug笔记

Wordcount代码:

import string

def wordcount(text):
    # 去掉标点符号并转换为小写
    text = text.translate(str.maketrans('', '', string.punctuation)).lower()
    
    # 按空格分割文本
    words = text.split()
    
    # 统计单词出现次数
    word_count = {}
    for word in words:
        if word in word_count:
            word_count[word] += 1
        else:
            word_count[word] = 1
    
    return word_count

# 测试
text = """Hello world!  
This is an example.  
Word count is fun.  
Is it fun to count words?  
Yes, it is fun!"""
result = wordcount(text)
print(result)

Wordcount运行结果:在这里插入图片描述### Vscode Debug笔记:

  1. 安装Python Extension包!!!(最重要
  2. 在Python代码中打红色断点
  3. 开始Debug
  4. 观察变量,修正bug

Vscode Debug截图:在这里插入图片描述\n\n### 项目参考:\n[1] https://github.com/InternLM/Tutorial/tree/camp3/docs/L0/Python\n"

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值