Как добавить все значения в список Python без использования функции SUM
def int_list(grades): #list is passed to the function
summ = 0
for n in grades:
summ += n
print summ
Nasty Nightingale