欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 汽车 > 时评 > 【学习笔记】大模型实战-L02-Python

【学习笔记】大模型实战-L02-Python

2024/10/25 4:25:18 来源:https://blog.csdn.net/CProjectManager/article/details/140482990  浏览:    关键词:【学习笔记】大模型实战-L02-Python

L02 Python

题目要求

一个wordcount函数,统计英文字符串中每个单词出现的次数。返回一个字典,key为单词,value为对应单词出现的次数。

代码实现

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.
"""def wordcount(text):# 将文本按行分割lines = text.strip().split('\n')word_dict = {}# 遍历每一行for line in lines:# 将每行按空格分割成单词words = line.split()for word in words:# 将单词转换为小写word = word.lower()# 统计单词出现次数if word in word_dict:word_dict[word] += 1else:word_dict[word] = 1return word_dict# 测试函数
input_text = """Hello world!  
This is an example.  
Word count is fun.  
Is it fun to count words?  
Yes, it is fun!"""print(wordcount(input_text))

远程调试

使用本地vscode连接远程开发机,将上面代码在开发机上进行调试。
远程连接方法见前一篇笔记。

在这里插入图片描述

Reference

https://github.com/InternLM/Tutorial/blob/camp3/docs/L0/Python/task.md

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com