Python
# Write word_count(text): dict mapping each lowercase word to how many times it appears.
def word_count(text):
    pass