DrZhang To calculate the total of a list, we use sum() with the list name between the parentheses, like sum(a) here. >>> aa = [1,2,3,4,5] >>> sum(aa) 15