Discover a world of knowledge at Westonci.ca, where experts and enthusiasts come together to answer your questions. Get the answers you need quickly and accurately from a dedicated community of experts on our Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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.