python 统计单词出现次数
# 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_li
·
# 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
更多推荐
已为社区贡献3条内容
所有评论(0)