标签: 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.'))