如何在不使用强力方法的情况下计算字符串中的辅音

时间:2016-09-19 00:27:47

标签: python count

我用蛮力方法做到了。我想知道在不使用粗暴方法的情况下计算这个字符串。

def countConsonat (s):
    count = 0
    for c in s:
        if c in ("bcdfghjklmnpqrstvwxzBCDFGHJKLMNPQRSTVWXZ"):
            count +=1
    return count
print (countConsonant ('"Carpe diem", every day.'))

0 个答案:

没有答案