它看起来很基础,但由于它与 python 语言本身有关,我觉得这里很迷茫。根据 Python 3.6 文档:
>>>help(sum)
...
sum(iterable, start=0, /)
Return the sum of a 'start' value (default: 0) plus an iterable of numbers
...
当我打电话时:sum([0,1,2], start=1)
,我得到:
TypeError: sum() takes no keyword arguments
这里发生了什么?