Quando tento fazer um for com range, dá erro. Código: notas = []
for i in range(0, len(notas_juntas), 3): notas.append([notas_juntas[i], notas_juntas[i+1], notas_juntas[i+2]]) notas
erro: IndexError Traceback (most recent call last) in <cell line: 1>() 1 for i in range(0, len(notas_juntas), 3): 2 notas = [] ----> 3 notas.append([notas_juntas[i], notas_juntas[i+1], notas_juntas[i+2]]) 4 notas
IndexError: list index out of range
Qual será a solução?