Write a nested if statement that will determine the student's final letter grade. Display the numeric and letter grades for the Final average and final exam. Write the nested code in python. import random def main(): # main function definition aGrades=[] # empty list to store Grades for i in range(7): # loop to read 7 inputs print("Input scores ",i+1," : ", end="") # a message to enter grade n=int(input()) # input grade aGrades.append(n) # add grade into list print("Grade list before randomize: ",aGrades) # print list random.shuffle(aGrades) # randomize list numExams=len(aGrades)-1 # compute numExams FinalExam=aGrades[-1] # store final grade TotalPoints=sum(aGrades)-aGrades[-1] # compute TotalPoints TestAverage=TotalPoints/numExams # compute TestAverage FinalAverage=TestAverage*.6 + FinalExam*.4 # compute FinalAverage print("Grade list after randomize is: ",aGrades) # print list print("Test Average = %.2f"%TestAverage) # print test average print("Final Average = %.2f "%FinalAverage) # print final average main() # calling main function

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 3E
icon
Related questions
Question

Write a nested if statement that will determine the student's final letter grade.  Display the numeric and letter grades  for the Final average and final exam.  Write the nested code in python. 

import random
def main():    # main function definition
    aGrades=[]   # empty list to store Grades
    for i in range(7): # loop to read 7 inputs
        print("Input scores ",i+1," : ", end="")  # a message to enter grade
        n=int(input())  # input grade
        aGrades.append(n) # add grade into list
    print("Grade list before randomize: ",aGrades)   # print list 
    random.shuffle(aGrades) # randomize list
    numExams=len(aGrades)-1 # compute numExams
    FinalExam=aGrades[-1] # store final grade
    TotalPoints=sum(aGrades)-aGrades[-1]  # compute TotalPoints
    TestAverage=TotalPoints/numExams   # compute TestAverage
    FinalAverage=TestAverage*.6 + FinalExam*.4  # compute FinalAverage
    print("Grade list after randomize is: ",aGrades)  # print list
    print("Test Average = %.2f"%TestAverage) # print test average
    print("Final Average = %.2f "%FinalAverage) # print final average
main()   # calling main function 

Expert Solution
steps

Step by step

Solved in 3 steps with 3 images

Blurred answer
Knowledge Booster
Problems on Dynamic Programming
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++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning