sum of list element
def int_list(grades): #list is passed to the function summ = 0 for n in grades: summ += n print summ