(PYTHON 3) For this assignment, you will create a very simple grading program. The program needs to do the following: 1
Posted: Mon May 02, 2022 11:41 am
(PYTHON 3)
For this assignment, you will create a very simple grading
program. The program needs to do the following:
1. Read a user name from the user.
2. For each student name, start asking for grades. Keep
asking for grades until the user enters a 'q'
3. Keep asking for student names until the user enters a 'q'
(remember for each student, you then need to enter grades)
4. Once the grades are entered, print each student name with
their average.
5. When calculating the average, you must use a function that
takes the grades as an argument and returns the the average.
The function should not print anything.
For this assignment, you will create a very simple grading
program. The program needs to do the following:
1. Read a user name from the user.
2. For each student name, start asking for grades. Keep
asking for grades until the user enters a 'q'
3. Keep asking for student names until the user enters a 'q'
(remember for each student, you then need to enter grades)
4. Once the grades are entered, print each student name with
their average.
5. When calculating the average, you must use a function that
takes the grades as an argument and returns the the average.
The function should not print anything.