gpt4 book ai didi

python - 使用字典计算每个字母在单词中出现的次数

转载 作者:行者123 更新时间:2023-12-02 01:53:05 26 4
gpt4 key购买 nike

我已经找到了解决办法

s= input("input string: ")

for n in s:
print({n:s.count(n)})

输出:

input string: chocolate coco

{'c': 4} {'h': 1} {'o': 4} {'c': 4} {'o': 4} {'l': 1} {'a': 1} {'t':1} {'e': 1} {' ': 1} {'c': 4} {'o': 4} {'c': 4} {'o': 4}

但是我怎样才能使输出不重复字母表。我希望输出是这样的:

{'c': 4} {'h': 1} {'o': 4} {'c': 4} {'o': 4} {'l': 1} {'a': 1} {'t':1} {'e': 1} {' ': 1}

最佳答案

试试这个:

s= input("input string: ")

for n in set(s):
print({n:s.count(n)})

set 给出所有不重复的值。这意味着您的代码现在不会打印出重复的字母。

关于python - 使用字典计算每个字母在单词中出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69984173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com