对列表中的元素求和

Summing elements in a list(对列表中的元素求和)
本文介绍了对列表中的元素求和的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

这是我的代码,我需要对列表中未定义数量的元素求和.如何做到这一点?

l = raw_input()l = l.split(' ')l.pop(0)

我的输入:3 5 4 9输入后,我通过 l.pop(0) 删除第一个元素.在 .split(' ') 我的列表是 ['5', '4', '9'] 之后,我需要对这个列表中的所有元素求和.p>

在这种情况下,总和为 18.请注意,未定义元素的数量.

解决方案

您可以简单地使用 sum() 内置:

sum(your_list)

它将汇总您拥有的尽可能多的数字项.示例:

my_list = range(10, 17)我的清单[10、11、12、13、14、15、16]总和(我的列表)91

针对您的具体情况:

对于您的数据,首先将数字转换为 int,然后将数字相加:

数据 = ['5', '4', '9']sum(int(i) for i in data)18

这适用于列表中未定义数量的元素(只要它们是数字")

感谢@senderle 的注释重新转换,以防数据为字符串格式.

Here is my code, I need to sum an undefined number of elements in the list. How to do this?

l = raw_input()
l = l.split(' ')
l.pop(0)

My input: 3 5 4 9 After input I delete first element via l.pop(0). After .split(' ') my list is ['5', '4', '9'] and I need to sum all elements in this list.

In this case the sum is 18. Please notice that number of elements is not defined.

解决方案

You can sum numbers in a list simply with the sum() built-in:

sum(your_list)

It will sum as many number items as you have. Example:

my_list = range(10, 17)
my_list
[10, 11, 12, 13, 14, 15, 16]

sum(my_list)
91

For your specific case:

For your data convert the numbers into int first and then sum the numbers:

data = ['5', '4', '9']

sum(int(i) for i in data)
18

This will work for undefined number of elements in your list (as long as they are "numbers")

Thanks for @senderle's comment re conversion in case the data is in string format.

这篇关于对列表中的元素求和的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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 求和?)