Question: (Python) Exercises using Collections (1) Write a program that prompts the user to input three numbers (one at a time) and then creates a list

(Python)
Exercises using Collections (1) Write a program that prompts the user to input three numbers (one at a time) and then creates a list with these numbers. Then write a function that takes in a list and removes the lowest number from the list and returns it. Execute this function and print the list to show the correct number was removed. How does the program change if you have more than three numbers? How does the program changes if you want to remove the highest rather than the lowest number? (2) Write a function that takes in two lists and returns true if the lists have a least one item that is the same. (3) Provide an easy to access listing of the number of credits needed to be considered a Freshman, Sophomore, Junior or Senior in college. Prompt the user to input the class level (i.e, freshman, sophomore, junior or senior) and print out the minimum number of credits required for the class level. Be sure you program works no matter what case the user inputs (e.g, UPPERCASE or lowercase). Hint: You should not use any if/elif/else statements
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
