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 B: Iterate on each grade in the list and display its result detailed below.
Pseudocode:
Define a list variable named grades with values [95, 85, 75, 65, 90]
For each grade in grades:
If the grade is greater than or equal to 90:
Display the grade letter A
Else if the grade is greater than or equal to 80:
Display the grade letter B
Else if the grade is greater than or equal to 73:
Display the grade letter C
Otherwise display Not a passing grade
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
