Write a program that reads student data from a file, compute their GPA and writes the results to a different file. 1. The user should have the option to either enter their text file that contains the student grades or use the provided text file that contains the information. The data in "indata.txt" should look similar to this, Lara_Croft 75 70 91 69 89 Chris_Redfield 68 88 79 85 94 Johnny_Cochran 69 98 95 77 80 Wanda_Maximoff 84 86 98 95 92 Luke_Skywalker 74 96 80 98 97 William_Kurt 89 52 99 81 58 Samuel_Jackson 50 96 50 64 95 END_OF_FILE This is supposed to be in python. This is what I have so far. I have no experience I apologise. I am trying to finish the GPA calculating program currently but am having trouble finishing it. grade = input("enter grades") points = 0 if grade is 90-99: total_points = 4.0 if grade is 80-89: total_points = 3.0 if grade is 70-79: total_points = 2.0 if grade is 60-69: total_points = 1.0 if grade is 50-59: total_points = 0.0 gpa = total_points/len(grade) print(gpa,"is gpa")
Write a program that reads student data from a file, compute their GPA and writes the results to a different file.
1. The user should have the option to either enter their text file that contains the student grades or use the provided text file that contains the
information.
The data in "indata.txt" should look similar to this,
Lara_Croft
75 70 91 69 89
Chris_Redfield
68 88 79 85 94
Johnny_Cochran
69 98 95 77 80
Wanda_Maximoff
84 86 98 95 92
Luke_Skywalker
74 96 80 98 97
William_Kurt
89 52 99 81 58
Samuel_Jackson
50 96 50 64 95
END_OF_FILE
This is supposed to be in python. This is what I have so far. I have no experience I apologise. I am trying to finish the GPA calculating program currently but am having trouble finishing it.
grade = input("enter grades")
points = 0
if grade is 90-99:
total_points = 4.0
if grade is 80-89:
total_points = 3.0
if grade is 70-79:
total_points = 2.0
if grade is 60-69:
total_points = 1.0
if grade is 50-59:
total_points = 0.0
gpa = total_points/len(grade)
print(gpa,"is gpa")
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images