Count how many times each word appears in a sentence.
Constraints
Example
```python
>>> count_words("Hello world hello")
{'hello': 2, 'world': 1}
>>> count_words("Python is fun. Python is powerful!")
{'python': 2, 'is': 2, 'fun': 1, 'powerful': 1}
>>> count_words("One, two, one!")
{'one': 2, 'two': 1}
>>> count_words(" ")
{}
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints