当列表的长度未知时,将 Python 列表中的前 2 个元素求和

Summing first 2 elements in a Python list when the length of the list is unknown(当列表的长度未知时,将 Python 列表中的前 2 个元素求和)
本文介绍了当列表的长度未知时,将 Python 列表中的前 2 个元素求和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在从 codingbat.com 进行以下 Python 列表练习:

I am working on the following Python list exercise from codingbat.com:

给定一个整数数组,返回数组中前两个元素的和大批.如果数组长度小于2,只需将元素相加即可存在,如果数组长度为 0,则返回 0.示例:

Given an array of ints, return the sum of the first 2 elements in the array. If the array length is less than 2, just sum up the elements that exist, returning 0 if the array is length 0. Examples:

sum2([1, 2, 3]) → 3 

sum2([1, 1]) → 2

sum2([1, 1, 1, 1]) → 2

我的解决方案如下:

def sum2(nums):
  if len(nums)>=2:
    return nums[0] + nums[1]
  elif len(nums)==1:
    return nums[0]
  return 0

但我想知道有没有什么办法可以用更少的条件语句来解决这个问题.

But I wonder if there's any way to solve the problem with fewer conditional statements.

推荐答案

有.解决方案的两个要素 - 内置函数 sum 和列表的 切片:

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

这篇关于当列表的长度未知时,将 Python 列表中的前 2 个元素求和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

patching a class yields quot;AttributeError: Mock object has no attributequot; when accessing instance attributes(修补类会产生“AttributeError:Mock object has no attribute;访问实例属性时)
How to mock lt;ModelClassgt;.query.filter_by() in Flask-SqlAlchemy(如何在 Flask-SqlAlchemy 中模拟 lt;ModelClassgt;.query.filter_by())
FTPLIB error socket.gaierror: [Errno 8] nodename nor servname provided, or not known(FTPLIB 错误 socket.gaierror: [Errno 8] nodename nor servname provided, or not known)
Weird numpy.sum behavior when adding zeros(添加零时奇怪的 numpy.sum 行为)
Why does the #39;int#39; object is not callable error occur when using the sum() function?(为什么在使用 sum() 函数时会出现 int object is not callable 错误?)
How to sum in pandas by unique index in several columns?(如何通过几列中的唯一索引对 pandas 求和?)