Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 pointStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started