Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Chapter 2: Activity 2

You are tasked to write a Python program that will compute the student’s average grade.

Procedures:

1. The program will ask the user to input the student name (string), prelim grade (float), midterm
grade (float), and final grade (float)
2. After the user has already provided the information being asked in the program, display the
student’s information along with the computed average grade.
Average Grade = (prelim grade + midterm grade + final grade) / 3
3. Save and upload your file in our respective Google Classroom using the naming format
lastname_firstname_chapter2_act2.py (example: atazar_noel_chapter2_act2.py).

A sample of expected result is provided to you below for your reference.

You might also like