InternStudio关卡(Python)

任务一:wordcount函数

请实现一个wordcount函数,统计英文字符串中每个单词出现的次数。返回一个字典,key为单词,value为对应单词出现的次数。
在开发机中创建python_task1.py文件,输入以下内容,并且运行python python_task1.py

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


def wordcount(s):
    # 去掉标点符号
    s = s.translate(str.maketrans('', '', string.punctuation))
    
    # 将字符串转换为小写
    s = s.lower()
    
    # 使用split()方法将字符串分割成单词列表
    words = s.split()
    
    # 创建一个空字典来存储单词及其出现次数
    word_count = {}
    
    # 遍历单词列表
    for word in words:
        # 如果单词已经在字典中,则增加其计数
        if word in word_count:
            word_count[word] += 1
        # 如果单词不在字典中,则将其添加到字典并设置计数为1
        else:
            word_count[word] = 1
    
    # 返回单词计数字典
    return 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)

运行结果为:

{'got': 2, 'this': 1, 'panda': 1, 'plush': 1, 'toy': 1, 'for': 3, 'my': 1, 'daughters': 1, 'birthday': 1, 'who': 1, 'loves': 1, 'it': 5, 'and': 3, 'takes': 1, 'everywhere': 1, 'its': 3, 'soft': 1, 'super': 1, 'cute': 1, 'face': 1, 'has': 1, 'a': 3, 'friendly': 1, 'look': 1, 'bit': 1, 'small': 1, 'what': 1, 'i': 4, 'paid': 1, 'though': 1, 'think': 1, 'there': 1, 'might': 1, 'be': 1, 'other': 1, 'options': 1, 'that': 1, 'are': 1, 'bigger': 1, 'the': 1, 'same': 1, 'price': 1, 'arrived': 1, 'day': 1, 'earlier': 1, 'than': 1, 'expected': 1, 'so': 1, 'to': 2, 'play': 1, 'with': 1, 'myself': 1, 'before': 1, 'gave': 1, 'her': 1}

任务二:在开发机上debug wordcount函数

链接远程开发机,并且安装对应的debug插件

运行debug设置

进入wordcount函数

在调试的过程观察变量的变化

posted @ 2024-07-11 23:08  塵埃飛揚  阅读(2)  评论(0编辑  收藏  举报