Posts by L. Braga • 1 point
1 post
-
0
votes1
answer42
viewsQ: How to store various user read values?
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…