aluno = int(input('Qual o numero de alunos ? '))
for i in range(aluno):
nota = float(input('Insira a nota de cada um dos alunos: '))
I need to know how I store student grades to add and divide by the number of students entered into the program