Prompt the user for successive input lines, with the prompt "Enter course number, units, and grade, separated by spaces". So a sample input line might be "ECS10 4 B-". Continue to prompt until a blank line is entered, that is a line with nothing before the new line character, which will be read in by input() as an empty string. Then compute the GPA as a weighted average of the points assigned for each grade, weighted by the number of units. The point values of the grades are 4 for A, 3 for B, 2 for C, 1 for D, and 0 for F. Except for the grade A, where + has no effect, a + after the letter increases the point value by 0.3, and except for F, where a - has no effect, a - after a letter decreases the point value by 0.3, so, for example, B- is worth 3 - 0.3 = 2.7 points. The weighted points for a course is the point value of the grade, multiplied by the number of units for the course. The weighted average for the GPA is then the sum of these weighted points, divided by sum of the units. Print the GPA with exactly two decimal places, preceded by the text "The GPA is ". So a sample session might look like:

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

please using python

Prompt the user for successive input lines, with the prompt "Enter course number, units, and grade, separated by spaces". So a sample
input line might be "ECS10 4 B-". Continue to prompt until a blank line is entered, that is a line with nothing before the new line character,
which will be read in by input() as an empty string. Then compute the GPA as a weighted average of the points assigned for each grade,
weighted by the number of units. The point values of the grades are 4 for A, 3 for B, 2 for C, 1 for D, and 0 for F. Except for the grade A,
where + has no effect, a + after the letter increases the point value by 0.3, and except for F, where a - has no effect, a - after a letter
decreases the point value by 0.3, so, for example, B- is worth 3 - 0.3 = 2.7 points. The weighted points for a course is the point value of the
grade, multiplied by the number of units for the course. The weighted average for the GPA is then the sum of these weighted points, divided
by sum of the units. Print the GPA with exactly two decimal places, preceded by the text "The GPA is ". So a sample session might look like:
Enter course number, units, and grade, separated by spaces
ECS10 4 B-
Enter course number, units, and grade, separated by spaces
ECS20 4 C+
Enter course number, units, and grade, separated by spaces
ANS17 3 A
Enter course number, units, and grade, separated by spaces
ANS49H 2 D
Enter course number, units, and grade, separated by spaces
The GPA is 2.62
The arithmetic for the GPA in the above example would be
(4 * 2.7 + 4* 2.3 + 3* 4.0 + 2 * 1.0) / (4 + 4 + 3+ 2)
Transcribed Image Text:Prompt the user for successive input lines, with the prompt "Enter course number, units, and grade, separated by spaces". So a sample input line might be "ECS10 4 B-". Continue to prompt until a blank line is entered, that is a line with nothing before the new line character, which will be read in by input() as an empty string. Then compute the GPA as a weighted average of the points assigned for each grade, weighted by the number of units. The point values of the grades are 4 for A, 3 for B, 2 for C, 1 for D, and 0 for F. Except for the grade A, where + has no effect, a + after the letter increases the point value by 0.3, and except for F, where a - has no effect, a - after a letter decreases the point value by 0.3, so, for example, B- is worth 3 - 0.3 = 2.7 points. The weighted points for a course is the point value of the grade, multiplied by the number of units for the course. The weighted average for the GPA is then the sum of these weighted points, divided by sum of the units. Print the GPA with exactly two decimal places, preceded by the text "The GPA is ". So a sample session might look like: Enter course number, units, and grade, separated by spaces ECS10 4 B- Enter course number, units, and grade, separated by spaces ECS20 4 C+ Enter course number, units, and grade, separated by spaces ANS17 3 A Enter course number, units, and grade, separated by spaces ANS49H 2 D Enter course number, units, and grade, separated by spaces The GPA is 2.62 The arithmetic for the GPA in the above example would be (4 * 2.7 + 4* 2.3 + 3* 4.0 + 2 * 1.0) / (4 + 4 + 3+ 2)
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Keywords
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
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