标签: python sum
在python中尝试sum([1,3],[3,6])时,出现错误
sum([1,3],[3,6])
Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: can only concatenate list (not "int") to list
但是当我尝试sum([[1,3],[3,6]],[])时,我得到[1,3,3,6]输出。
sum([[1,3],[3,6]],[])
有人可以解释一下这个python的行为吗?