Question: Use the pseudocode provided below to write the python code solution on Jupyter Notebook. Provide a comment to label the problem (e.g., #Problem A, etc.).
Use the pseudocode provided below to write the python code solution on Jupyter Notebook. Provide a comment to label the problem (e.g., #Problem A, etc.). Solve each problem in the order presented below. Be sure to run each cell to display the end result. There should be a total of four code cells in your Notebook (one for each problem). Submit your completed Jupyter Notebook file (.ipynb) and as a PDF file to Blackboard using one submission.
PROBLEM C: Display the sum of all the grades in the list as well as the average grade without using the sum() function.
Pseudocode:
Define a variable named total and assign it the value 0
Define a list variable named grades with values [95, 85, 75, 65, 90]
For each grade in grades:
Add it to the total
Display the total
Display the average by dividing the total by the number of elements in the list using the len() function
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
