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")

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
100%

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")

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT