Problem Description

Since all input is string data, you will need to convert each score in the list into an int. Send the numeric data to a function that will compute and return (not print) the average homework score of all scores except the lowest score. For example, if the scores are 70, 80, and 90, you would add up all 3 scores (240), subtract the lowest (70) giving 170, and divide that number by one less than ... ................
................