Código:
La salida sera si hacemos print ListaAcumulado:def Acumulador(): ListaNumeros = [1,7,2,4] ListaAcumulado = [] aux = 0 for acumulando in ListaNumeros: aux = aux + acumulando ListaAcumulado.append(aux)
Código:
[1,8,10,14]