Question: using python 1. A. User Input: Write a function get_list_of_words(): Use a while loop to continually ask the user to input a word, until they

using python
1. A. User Input: Write a function get_list_of_words(): Use a while loop to continually ask the user to input a word, until they type "quit". Once they type a word in, add it to a list. Once they quit the loop, return the list. (Please do not print, but return the list) 2.5 points B. Write another function print_sortedt(in_list): that will use a for loop to print all items within the list in a reversed order. The print should separate the words using a comma and at the end put out a new line 2.5 points Test against the words: USA, ISA, FSB, Miami, ISA, Python, quit C. Modify the get_list_of_words() to get_list_of_numbers() 1 point
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
