美文网首页
统计字符串中的元音

统计字符串中的元音

作者: zhangxu0636 | 来源:发表于2016-07-11 13:28 被阅读13次
#统计字符串中的元音总个数
def calculate(source):
    a = ["a","e","i","o","u"]
    return sum([1 for e in source if str.lower(e) in a])
#统计各个元音的个数
def caculate1(source):
    m = {}
    a = ["a","e","i","o","u"]
    for e in source:
        if str.lower(e) in a:
            if str.lower(e) in m:
                m[str.lower(e)] = m[str.lower(e)] + 1
            else:
                m[str.lower(e)] = 1
    return m

相关文章

网友评论

      本文标题:统计字符串中的元音

      本文链接:https://www.haomeiwen.com/subject/cucjjttx.html