jknet 1 Report post Posted September 30, 2012 Crie uma funcao SomaNum que receba 10 numeros e retorne a soma deles. Nao conseguir desde ja agradeco def soma(y): soma = 0 somaa = soma + y return soma for i in range(3): n = int(input("Numero : ")) var = soma(n) print(var) Share this post Link to post Share on other sites
_Isis_ 202 Report post Posted September 30, 2012 Veja que a função SomaNum deve receber 10 números e não 1. def SomaNum(int_list): soma = 0 for i in int_list: soma+=i return soma Existe uma função na biblioteca padrão que já faz isso: sum(list(range(10))) Share this post Link to post Share on other sites