在 Python 中,sum() 函数用于计算序列的元素总和。其语法为:sum(iterable, start=0),其中 iterable 为要计算总和的序列,start 为初始值(默认为 0)。sum() 函数返回序列元素的总和,若序列...