Answer:
# Open the input and output files
with open('input.txt', 'r') as infile, open('output.txt', 'w') as outfile:
# Loop over each line in the input file
for line in infile:
# Split the line into the student's name and their quiz scores
name, *scores = line.split()
# Convert the quiz scores to integers
scores = [int(score) for score in scores]
# Calculate the average quiz score
avg_score = sum(scores) / len(scores)
# Write the output to the output file
outfile.write(f"{name} {' '.join(map(str, scores))} {avg_score:.2f}\\")
Step-by-step explanation:
Assuming that the input file is named input.txt, the output file will be named output.txt. You can modify the file names and paths as necessary to fit your requirements.