📜  如何在不使用 sum 函数的情况下添加列表 python 中的所有值 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:09.071000             🧑  作者: Mango
代码示例1
def int_list(grades): #list is passed to the function
summ = 0
for n in grades:
summ += n
print summ