1确定一个字符串中有多少个元音字母
def getCount(inputStr):
return len([a for a in inputStr if a in "aeiou"])
原文地址:https://www.cnblogs.com/likePython/p/10188674.html
时间: 2024-11-11 20:29:36
1确定一个字符串中有多少个元音字母
def getCount(inputStr):
return len([a for a in inputStr if a in "aeiou"])
原文地址:https://www.cnblogs.com/likePython/p/10188674.html