def ponctuation_score(text): num_excl = text.count("!") num_int = text.count("?") return num_excl - num_int