Answered step by step
Verified Expert Solution
Question
1 Approved Answer
plz use python Write a program that asks the user to enter successive values, which are stored in a list. The program repeatedly asks the
plz use python
Write a program that asks the user to enter successive values, which are stored in a list. The program repeatedly asks the user for a value until the user enters "stop". Once the user enters "stop", the program asks the user to enter a threshold value. Then, the program calculates and prints the average of the values in the list, only if they are greater than the threshold. Note: - The output produced by the program must be in the format shown in the examples below, including the format of the prompt, spaces, and punctuation. - The user will always enter at least 1 value. - The user will always enter a threshold less than the highest value stored in the list. - The user can enter float values. - The average should be displayed with 2dp. - Useful methods: append () For exampleStep 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