python add sum of list tems code example
Example: 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
def int_list(grades): #list is passed to the function
summ = 0
for n in grades:
summ += n
print summ