书生大模型实战营第三期——入门岛——python基础知识

第二关:python基础知识

任务如下:

任务描述
闯关任务 Python实现wordcount
闯关任务 Vscode连接InternStudio debug笔记

1 Vscode连接InternStudio

见第一关教程中vscode远程连接部分。

书生大模型实战营第三期------入门岛------Linux基础知识-CSDN博客

2 Python实现wordcount

python 复制代码
def word_count(text):
    import re
    words = re.findall(r'\b\w+\b', text.lower())
    word_dict = {}
    for word in words:
        if word in word_dict:
            word_dict[word] += 1
        else:
            word_dict[word] = 1
    return word_dict

input_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."""

output = word_count(input_text)
print(output)

3 Vscode连接InternStudio debug笔记

相关推荐
echome88813 小时前
Python 异步编程实战:async/await 从入门到精通
开发语言·python·php
2401_8914821713 小时前
将Python Web应用部署到服务器(Docker + Nginx)
jvm·数据库·python
小杍随笔14 小时前
【Rust 语言编程知识与应用:自定义数据类型详解】
开发语言·后端·rust
研究点啥好呢14 小时前
3月15日GitHub热门项目推荐 | 当AI拥有记忆
人工智能·python·github·openclaw
m0_5281744514 小时前
C++中的代理模式变体
开发语言·c++·算法
皙然14 小时前
深入理解 Java HashMap:从底层原理、源码设计到面试考点全解析
java·开发语言·面试
蜗牛会飞 202414 小时前
大数据时代个人信息保护五大挑战
开发语言·华为云·个人开发·c5全栈
肖永威14 小时前
Python 工程化实战:从目录结构到 VSCode 完美配置
vscode·python·python工程
mjhcsp14 小时前
C++ 折半搜索(Meet in the Middle):突破指数级复杂度的分治策略
开发语言·c++
mftang14 小时前
C语言条件编译详解
c语言·开发语言