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

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education