IDNLearn.com provides a seamless experience for finding and sharing answers. Our experts provide accurate and detailed responses to help you navigate any topic or issue with confidence.

write a program that reads a list of words. then, the program outputs those words and their frequencies (case insensitive). ex: if the input is: hey hi mark hi mark the output is: hey 1 hi 2 mark 2 hi 2 mark 2 hint: use lower() to set each word to lowercase before comparing.