python-汪 发表于 2022-11-19 00:28:00

利用字典,求用户输入内容中字母的次数

#编写一个程序:计算用户输入的文本中单词的个数
#假设用户输入的为:Python 奋斗 奋斗 100 100 2022
#则程序输出:{'python': 1, '奋斗': 2, '100': 2, '2022': 1}

这是我们老师今天布置的作业,要求使用字典方法写出来,但是我横竖都写不出,帮帮孩子吧!{:5_104:}

python-汪 发表于 2022-11-19 00:28:31

编写一个程序:计算用户输入的文本中单词的个数。

假设用户输入:Python奋斗奋斗1001002022

则程序输出:{'python': 1, '奋斗': 2, '100': 2, '2022': 1}

tommyyu 发表于 2022-11-19 07:47:24

words = input().split()
count = dict()
for i in words: count = 0 #创建列表
for i in words: count += 1 #统计个数
print(count)

jackz007 发表于 2022-11-19 07:57:07

s , d = input() . split() , {}
for x in s : d = d . get(x , 0) + 1
print(d)

lxping 发表于 2022-11-19 09:50:54

from collections import Counter
cnt = Counter()
words = input().split()
for i in words:
    cnt += 1
print(cnt)
页: [1]
查看完整版本: 利用字典,求用户输入内容中字母的次数