# coding=utf-8
# talk is cheap show me the code show me the code
"""
   1、用户输入英文短句
   2、分割字符串
   3、循环处理
   4、查询
"""
# 用户输入英文短句
msg = input("请输入你想要分割的英文字符")
msg_list = msg.split() # 默认空格分割
# 声明字典
dict_count = {}
# print(msg_list)
# 3、循环处理
for m in msg_list:
    # 储存到字典中
    if m not in dict_count:
        dict_count[m] = 1  # 单词当做我们的key,1当做value
    else:
        dict_count[m] += 1
# print(dict_count)
code = input("请输入要查询次数的单词:")
print("{}该单词出现点次数为: {}次".format(code, dict_count.get(code,0)))
# get里面查看code,如果没有code,默认返回0


在这里插入图片描述
该内容来源:https://www.bilibili.com/video/BV1qh411W7HP?p=37&spm_id_from=pageDriver,如有冒犯,请及时告知!Thanks♪(・ω・)ノ
注:2021/10/29

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐