Summing first 2 elements in a Python list when the length of the list is unknown

家住魔仙堡 提交于 2019-12-01 02:34:13

There is. Two elements of the solution - builtin function sum and lists's slices:

>>> sum([1,2,3][:2])
3
>>> sum([1,1,1,1][:2])
2
>>> sum([1,1][:2])
2
>>> sum([1][:2])
1
>>> sum([][:2])
0

If you can't use sum, one possible solution uses exceptions:

totalsum = 0
try:
  totalsum += nums[0]
  totalsum += nums[1]
except IndexError:
  pass
return totalsum

Catch the error and short-circuit the summation if an element doesn't exist. Easier to ask forgiveness than permission, as they say.

try this:

def sum2(nums):
  if len(nums) == 1:
    return nums[0]
  else:
    return sum(nums [:2])
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!