add up elements in python list without sum function code example
Example 1: without using sum add item in list python
sum of list element
Example 2: how to add all values in a list python without using sum function
def int_list(grades): #list is passed to the function
summ = 0
for n in grades:
summ += n
print summ