Write word_count.py with def count_words(text: str) -> dict[str, int] that returns a dict mapping each unique word to its frequency. Lowercase words and strip basic punctuation (.,!?).
