Write a program called "process_numbers.py" that repeatedly reads numbers input by the user until the user types done. After the user has entered done, print out (i.e. print) the total, count, maximum, minimum, and average of the entered numbers.

Given the following python statementavg_str = 'Average value read: 0.72903' Use the find() method and string slicing to extract the portion of the string after the colon character and then use the float() function to convert the extracted string into a floating point value. Your code should provide a "general" solution, meaning that the number you extract could be any floating point number (it may or may not be preceded by a space, it may or may not begin with 0, it may or may not end with 3, and its length is not known before your program executes). A generalized solution will successfully extract values such as 0.72903, 3.14159265359, 2.81, etc.. In other words, your solution will not make any a priori assumptions regarding the format or content of the number, other than it being a floating point value that follows the colon character. No validation of the numeric value is required. Your code should only assume that it is a value that can be properly converted into a floating point value. You make use of the string value as it is, but it can change by way of editing. Through editing operations, the numeric value may change, and spaces may be added or removed between the colon and the numeric value. Except for numeric characters and spaces, no extra characters, special or otherwise, will be introduced

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.