Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

use python 7.5 Grade Point Average (GPA) Prompt the user for successive input lines, with the prompt 'Enter course number, units, and grade, separated by

image text in transcribed
use python
7.5 Grade Point Average (GPA) 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 4B. 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 ANS 49H 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 * 27+4+23+3.40+2 1.0)/(4 + 4 +3+2)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

How To Make A Database In Historical Studies

Authors: Tiago Luis Gil

1st Edition

3030782409, 978-3030782405

More Books

Students also viewed these Databases questions

Question

Actetabulum of os coxae articulate

Answered: 1 week ago

Question

Find y'. y= |x + X (x) (x) X 1 02x+ 2x 1 O 2x + 1/3 Ex 2x +

Answered: 1 week ago