00:01
You're going to be creating a python program that calculates the average grade from a class.
00:07
So to do this, we need to create a list and to store the grades.
00:15
And we also need to get the amount of students.
00:20
So we're going to create a grade list of python.
00:26
It's going to be an empty list so we can store information.
00:31
Next, we're going to create a student count variable.
00:40
And we're going to convert this to an integer, and we're going to have a message, asking the user to enter the amount of students to calculate.
00:56
Okay.
00:59
We can also print this on a new line.
01:00
We don't have to, but i'm going to like every on a new line.
01:06
Now we're going to create a for loop where we will loop the amount of times the students.
01:20
So we can get the grades...