利用字典,求用户输入内容中字母的次数
#编写一个程序:计算用户输入的文本中单词的个数#假设用户输入的为:Python 奋斗 奋斗 100 100 2022
#则程序输出:{'python': 1, '奋斗': 2, '100': 2, '2022': 1}
这是我们老师今天布置的作业,要求使用字典方法写出来,但是我横竖都写不出,帮帮孩子吧!{:5_104:} 编写一个程序:计算用户输入的文本中单词的个数。
假设用户输入:Python奋斗奋斗1001002022
则程序输出:{'python': 1, '奋斗': 2, '100': 2, '2022': 1} words = input().split()
count = dict()
for i in words: count = 0 #创建列表
for i in words: count += 1 #统计个数
print(count)
s , d = input() . split() , {}
for x in s : d = d . get(x , 0) + 1
print(d) from collections import Counter
cnt = Counter()
words = input().split()
for i in words:
cnt += 1
print(cnt)
页:
[1]