Welcome to Westonci.ca, your go-to destination for finding answers to all your questions. Join our expert community today! Get immediate and reliable solutions to your questions from a community of experienced 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.