1 Star 0 Fork 0

fanyangchu/PythonCode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vowels.py 438 Bytes
一键复制 编辑 原始数据 按行查看 历史
Firejoust 提交于 2020-10-03 10:55 . Added a vowel counter program
print("\n### Vowel counter ###\n")
string = input("Enter a string: ").lower()
vowels = ["a", "e", "i", "o", "u"]
vowelscounter = 0
def checkVowels(letter):
for i in range(len(vowels)):
if letter == vowels[i]:
return True
return False
for i in range(len(string)):
if checkVowels(string[i]):
vowelscounter = vowelscounter + 1
print(f"\n### {vowelscounter} vowel(s) were found in the string. ###")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/fanych/pythoncode.git
git@gitee.com:fanych/pythoncode.git
fanych
pythoncode
PythonCode
master

搜索帮助