Answered! IN PYTHON Prompt the user by "Enter name of input file: " for the name of an input file and open that file for reading. The two…

IN PYTHON

Prompt the user by “Enter name of input file: ” for the name of an input file and open that file for reading. The two input files for the tests are already at the zyBooks site.They each have a list of student names with the course they have taken, of the form

Jacobs, Anthony
ECS10 4 B-
ECS20 4 C+
ANS17 3 A
ANS49H 2 D

Wilson, Elaine
ECS10 4 B+
ECS20 4 C+
ANS17 3 A
ANS49H 2 D
ANS100 5 B-

with the student name on one line, and a list of that student’s course names, units, and grades on a sequence of following lines, terminated by a blank line before the next student name line. The input will be terminated either by a second blank line where the next name would be, which will appear as just “n”, or by the file ending, which will result in just the empty string “” when reading in any more lines. (The input for the hidden second test just ends without an blank lines after the last course.)

The program should open and write an output file named “GPA_output.txt” of the form:

Jacobs, Anthony           2.62
Wilson, Elaine            2.77

with each line containing a student name and the GPA, which must be computed by the program. The format of each line must have the name left adjusted, in a field with a total of 26 spaces, followed immediately by the GPA, with two decimal places. You can do this with a formatted output of the form:

f.write("%-26s%.2fn" % (student_name, GPA))

Note that the “n” is needed at the end of the quoted format specification, because unlike print(), f.write() does not automatically put a new line character at the end of the line.

The input given above is for the first test, and the file “GPA_input.txt” from which it was taken is in the canvas File Folder for “Week 9” of “Programs shown in class”, so that you can use it for testing your program before submitting it. You will probably need to do such testing because unlike the other assignments, if your program has problems that prevent it from getting to the stage of writing the output file, the error reported will just be “Could not find file: GPA_output.txt” which is not very useful. The output file for this input, “GPA_output.txt” is also in the Week 9 folder for you to compare, since white space is important here.

Expert Answer

 PYTHON CODE:

import itertools

filename=input(‘Enter the file name: ‘)

grade={‘A’:4.0,’A-‘:3.67,’B+’:3.33,’B’:3.0,
‘B-‘:2.67,’C+’:2.33,’C’:2.0,’C-‘:1.67,
‘D+’:1.33,’D’:1.0,’D-‘:0.67,’E’:0.0}

output=open(‘GPA_output.txt’,’w’)

def check_separator(line):
return line==’n’

with open(filename) as f:

for key,group in itertools.groupby(f,check_separator):

if not key:
name=”
gpa=0
total=0
for n,item in enumerate(group):

if n==0:
name=item.strip()
else:
data=item.split()
total+=int(data[1])
gpa+=int(data[1]) * grade[data[2]]
output.write(“%-26s%.2fn” % (name, gpa/total))

output.close()

SCREENSHOT FOR OUTPUT:

getting file name

Answered! IN PYTHON Prompt the user by "Enter name of input file: " for the name of an input file and open that file for reading. The two... 1

output file

Answered! IN PYTHON Prompt the user by "Enter name of input file: " for the name of an input file and open that file for reading. The two... 2

Still stressed from student homework?
Get quality assistance from academic writers!