gpt4 book ai didi

python - 如何使用python统计一个字母在word中出现的次数

转载 作者:行者123 更新时间:2023-11-30 23:05:00 25 4
gpt4 key购买 nike

有没有更好的方法来写出这个Python代码 - 计算一个字母在一个单词中出现的次数。例如“idiosyncrasy”在单词中有两个字母“y”。我如何计算并输出这个数字一个字母在一个单词中出现的次数。只是想用 for 循环和 while 语句来保持简单。仍然是 python 新手。

示例代码:

def display():
letter = str(input('enter a letter: '))
word = str(input('enter a word: '))
print(countNum(word,letter))

def countNum(letter, word):
count = 0
index = 0
for letter in word:
if str(word[index]) == letter :
print(count)
count = count + 1

最佳答案

x = "testert"
print(x.count("e"))
print(x.count("t"))

您可以使用它轻松完成此操作。

输出:

2
3

关于python - 如何使用python统计一个字母在word中出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33406943/

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