score int excl

 avatar
unknown
python
2 years ago
122 B
2
Indexable
def ponctuation_score(text):
    num_excl = text.count("!")
    num_int = text.count("?")
    return num_excl - num_int