score int excl
unknown
python
2 years ago
122 B
3
Indexable
def ponctuation_score(text): num_excl = text.count("!") num_int = text.count("?") return num_excl - num_int
Editor is loading...
def ponctuation_score(text): num_excl = text.count("!") num_int = text.count("?") return num_excl - num_int