gpt4 book ai didi

Python 计数元音

转载 作者:太空宇宙 更新时间:2023-11-04 10:30:43 25 4
gpt4 key购买 nike

我已经开始研究一个计算元音的程序,但似乎一无所获。我需要计算字符串中的元音,然后显示元音。我需要通过将出现次数存储在变量中来做到这一点。像这样:

    a = 0
b = 0
....

then print the lowest.

当前代码(没那么多):

string = str(input("please input a string:  "))
edit= ''.join(string)


print(edit)

我自己尝试了很多方法,但似乎没有任何效果。

最佳答案

你可以使用字典理解:

>>> example = 'this is an example string'
>>> vowel_counts = {c: example.count(c) for c in 'aeoiu'}
>>> vowel_counts
{'i': 2, 'o': 0, 'e': 5, 'u': 0, 'a': 2}

然后找到最小值、最大值等就很简单了。

关于Python 计数元音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26830834/

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