Python Programming #2
In this assignment you are to:
  • Design, code and test the a simple Python program using a SEQUENTIAL CONTROL STRUCTURE
  • The program will be used to find the total of points a student has earned from 5 tests and assign
    either a "P" (the test score must be greater than 65%) or a "NP" grade
Your program must meet the following criteria:
User Input --
The program will request the following data from the user:
  1. First Name
  2. The scores for 5 exams each having 20 questions (i.e. each test has a point value from 0 to 20)
Program Processing --
The program will calculate the total questions answered correctly and then determine which grade (P or NP) to assign
Output --
The following data will be displayed in a short report on the screen (use a separate line for each):
  1. Student's Name
  2. The total number of questions answered correctly
  3. The grade assigned
When you are through coding your program, do the following:
Second Part of Assignment 12