有人可以解释一下这是如何工作的吗?
python 288
原文标题 :Can somebody please explain how this works?
我是 Python 新手,我一直在尝试编写基本程序来理解它。我看到了这个程序,它计算元音的数量,但我不太明白它是如何工作的?我已经把它放在代码可视化器中,但那里什么也没有?有人可以解释我如何输入一个单词来返回计数吗?或者我可以在哪里添加一行要求输入的代码?如果这个问题很愚蠢,我提前道歉。我才刚刚开始。
这是我找到的代码:-
count = 0
def count_vowel(word):
vowels = 'aeiouAEIOU'
for i in range(word):
if i in vowels:
count = count + 1
return count