0
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 students' grades to add and divide by the number of students typed in the program
You know the structure list python?
– Woss