Final answer:
To fix the Python script, the 'calc_avg' function should be modified to skip the first command line argument, which is the student's name, when summing grades.
The code provided above does that correctly and calculates the average of the grades, rounding it to one decimal place.
Step-by-step explanation:
The Python script provided has a ValueError because it is trying to convert the student's name ('Dawn' or 'Lindsey') to an integer, which is not possible. The calc_avg function should start summing grades from the second argument (index 1) since the first argument (index 0) is the student's name. Below is the corrected version of the script:
import sys
def calc_avg(grades):
sum = 0
for grade in grades[1:]: # Start from index 1 to skip the name
sum += int(grade)
avg = sum / (len(grades) - 1) # Subtract 1 for the name
return round(avg, 1)
name = sys.argv[1]
avg = calc_avg(sys.argv[1:]) # Pass only the grades to the function
print(f"{name}'s average is {avg}.")
This code properly calculates the average grade and rounds it to one decimal place. It is expected to run without errors when provided with the correct command line arguments.