been working on this for hours, thought i had it down but it turns out i have it all wrong.
The assignment is to
Write a program that computes your semester average and letter grade for the course
*******The user will enter these numbers:******
A list of quiz scores. Each score is in the range 0–10. The user enters the sentinel value –1 to end the input. Drop the lowest quiz score.*
A list of project scores. Each score is in the range 0–10. The user enters the senti- nel value –1 to end the input. Do not drop the lowest program score.*
Two midterm exam scores. Each score is in the range 0–100*
A final exam score. Each score is in the range 0–100."
And here is my code
qsum = 0
psum = 0
count = 0
while True:
q1 = float(input("Quiz #1 ----- "))
if q1 < 0:
break
qsum = qsum + q1
lowest = q1
q2 = float(input("Quiz #2 ----- "))
if q2 < 0:
break
qsum = qsum + q2
if lowest > q2:
lowest = q2
q3 = float(input("Quiz #3 ----- "))
if q3 < 0:
break
qsum = qsum + q3
if lowest > q3:
lowest = q3
q4 = float(input("Quiz #4 ----- "))
if q4 < 0:
break
qsum = qsum + q4
if lowest > q4:
lowest = q4
q5 = float(input("Quiz #5 ----- "))
if q5 < 0:
break
print("Quiz #1 ----- ",q1)
print("Quiz #2 ----- ",q2)
print("Quiz #3 ----- ",q3)
print("Quiz #4 ----- ",q4)
print("Quiz #5 ----- ",q5)
while True:
p1 = float(input("Program #1 -- "))
if p1 < 0:
break
psum = psum + p1
p2 = float(input("Program #2 -- "))
if p2 < 0:
break
psum = psum + p2
p3 = float(input("Program #3 -- "))
if p3 < 0:
break
#and so on#
if 90 <= total <= 100:
print("Grade ------ A")
if 80 <= total < 90:
print("Grade ------ B")
if 70 <= total < 80:
print("Grade ------ C")
if 60 <= total < 70:
print("Grade ------ D")
if 0 <= total < 60:
print("Grade ------ F")
Here is what the print out needs to look like
Quiz #1 ----- 10
Quiz #2 ----- 9.5
Quiz #3 ----- 8
Quiz #4 ----- 10
Quiz #5 –---- -1
Program #1 -- 9.5
Program #2 -- 10
Program #3 -- 9
Program #4 -- -1
Exam #1 ----- 85
Exam #2 ----- 92
Final Exam -- 81
Average ----- 89.4
Grade ------- B
Unfortunately i didnt think about the fact that he probably wants this all in one single loop without fifty if statements and without specifying each quiz, he wants it to count through however long until the sentinel is entered. But i cant figure out how to do that? How do i store the information each time through the loop so i can get the desired output?
So yeah im a little lost, any direction is very helpful, im struggling. Thanks guys.
If you're storing the input as integers, you probably want a dict. You'd do something like this:
You'd check if you need to quit every time and you'd also have a fairly intuitive way of accessing the data.
I used some things that might come in handy in the future, if you continue to program in python (like generators, list comprehension, map)
You can try something like this: (Can be simplified, but for clarity.. )
EDIT: Change in the generator so that -1 is not added to the list
You don't want to have a fixed number of quizes or projects. Instead, use a loop for each of those types of scores, so you can keep asking until they user doesn't have any more scores to enter.
I'm not going to write the whole thing for you, but here's one way to handle the quizes:
There are other ways you could do it. For instance, instead of building a list of scores, you could keep track of a running sum that you update in the loop. You'd also want to keep track of the smallest score you've seen so far, so that you could subtract the lowest score from the sum at the end.