使用Python统计字符串中单词数量
题目内容:读入一个字符串,内容为英文文章,输入其中出现最多的单词(仅输入单词,不计算标点符号,同一个单词的大小写形式合并计数),统一以小写输出。输入格式:this is a python and Python输出格式:python# 初始化 处理 输入的数据inputstr = input()inputstr = inputstr.lower()lst = (inputstr).spl
·
题目内容:
读入一个字符串,内容为英文文章,输入其中出现最多的单词(仅输入单词,不计算标点符号,同一个单词的大小写形式合并计数),统一以小写输出。
输入格式:
this is a python and Python
输出格式:
python
# 初始化 处理 输入的数据
inputstr = input()
inputstr = inputstr.lower()
lst = (inputstr).split(' ')
#使用字典存储,出现的字母的次数
dit = {}
max = 0
maxkey = ""
for item in lst:
if (dit.get(item, 0)):
dit[item] = dit[item] + 1
else:
dit[item] = 1
#每次判断寻找最大值和字母
if (dit[item] > max):
max = dit[item]
maxkey = item
print(maxkey)
更多推荐
已为社区贡献1条内容
所有评论(0)