-9
votes
1answer
79 views

How to get the sum of the elements of a list? [closed]

How can I get the sum of the elements of a list? i.e, f = [1,8,3] sum(f)=12?
6
votes
9answers
119 views

How to sum 3 same sized sorted lists based on the identical elements of the first one in Python?

I have a python dictionary containing 3 lists in the keys 'time', 'power' and 'usage'. All the lists have the same number of elements and all the lists are sorted. What I want to do is to sum up all ...
1
vote
8answers
107 views

How to find the cumulative sum of numbers in a list?

list=[4,6,12] I want to sum up the numbers like [4+0, 4+6, 4+6+12] in order to get the list t=[4,10,22]. I tried: x=0 for i in (time_interval): t1=time_interval[0] t2=time_interval[1]+t1 ...
0
votes
2answers
43 views

Script to keep a running tally of a list

I've been running a series of games where the winners get a certain number of points at the end of every game. I'm trying to write a script that generates a "leaderboard" - essentially, keeps a ...
0
votes
2answers
56 views

Prolog Sum of All Instances in a List of Facts

I have a list of facts. Each fact defines a relationship between two subjects and the number of projects they've completed. They're defined like this: ...
6
votes
2answers
72 views

sum of two lists with lists in R

Is there an easy way to do a simple calculation in a list of lists? x <- list(a=list(1:4),b=list(1:6)) y <- list(a=list(1:4),b=list(1:6)) When I try: x+y I receive the error: Error in x + ...
0
votes
2answers
113 views

return the sum of the max sublist

I have to write a function that takes a list of integers and returns the maximum sum sublist of the list. An example would be: l = [4,-2,-8,5,-2,7,7,2,-6,5] returns 19 so far my code is: count = ...
0
votes
0answers
41 views

Partial sum(prefix sum) in sml? [duplicate]

Possible Duplicate: Partial sum in Standard ML? I wrote a increment fn but somehow cant make it partial sum. Any help? type:int list -> int list fun psum(L) = if L = [] then [] ...
0
votes
1answer
196 views

Partial sum in Standard ML?

Im new to functional programming and I have an assignment to compute partial sum of a list. E.g. - psum [1,1,1,1,1]; val it = [1,2,3,4,5] : int list Here is the my code so far. However in function ...
-2
votes
1answer
402 views

'System.Collections.Generic.List<float>' does not contain a definition for 'Sum'

I am trying to Sum a list of floats with built in Sum() function but I keep getting this error : Error CS1061: 'System.Collections.Generic.List' does not contain a definition for 'Sum' and no ...
0
votes
2answers
143 views

Scala conditional sum of elements in a filtered tuples list

I'm new to Scala and need a little help about how to combine filters and sum on a list of tuples. What I need is the sum of integers of a filtered tuples list which essentially the answer to the ...
0
votes
6answers
224 views

Add SUM of values of two LISTS into new LIST

I have the following two lists: first = [1,2,3,4,5] second = [6,7,8,9,10] Now I want to add items of both lists into a new list. output should be three = [7,9,11,13,15]
2
votes
4answers
449 views

Sum of list of lists; returns sum list

Let data = [[3,7,2],[1,4,5],[9,8,7]] Let's say I want to sum the elements for the indices of each list in the list, like adding numbers in a matrix column to get a single list. I am assuming that all ...
-1
votes
2answers
367 views

calculating average numbers from a dictionary of lists, python

I my code I have a dictionary which has two lists combined with zip() function self.dict = OrderedDict(zip(self.name,self.unit)) The lists are given as arguments... ...
2
votes
3answers
95 views

Sum of elements in a list at the same position

How can I do the sum of elements in a list at the same position? For example: [[2,3,4],[5,6,7],[8,9,10]]=[15,18,21] Thanks
0
votes
5answers
119 views

sum of elements inside python list

I'm trying to write some code that can sum elements inside a list that looks like the following example: list[(a,b,1),(c,d,2),(e,f,3)] What I want to do is to sum the numbers inside this list. What ...
1
vote
1answer
60 views

What's the simplest way to split 10 random numbers into two lists where the difference in the sum of the lists is as small as possible

You get 10 numbers that you have to split into two lists where the sum of numbers in the lists have the smallest difference possible. so let's say you get: 10 29 59 39 20 17 29 48 33 45 how would ...
2
votes
3answers
851 views

python sum the values of lists of list

I have list of lists and i need to sum the inner lists, for example, a = [[1,2,3], [2,1,4], [4,3,6]] for my case, the len of a[i] is same, that is all the inner lists have same dimension. and i ...
0
votes
0answers
66 views

Finding the numbers in a list that add up to a sum Python

I need to define a function that finds the numbers within a list that add up to a given sum. I want to do this function recursively. This is what I have so far, I think I need to work on my ...
1
vote
3answers
195 views

C# - Sum List<string[]>

Suppose you have a list<string[]> List<string[]> lst = new List<string[]>(); lst.Add(new string[] { "A", "100.10" }); lst.Add(new string[] { "B", "250.49" }); How do you ...
2
votes
3answers
124 views

Finding the index and sum in a list of lists

Hello I have what I hope is an easy problem to solve. I am attempting to read a csv file and write a portion into a list. I need to determine the index and the value in each row and then summarize. ...
0
votes
3answers
109 views

New to Python, think I am using sum incorrectly?

input1 = raw_input("Hello enter a list of numbers to add up!") lon = 0 while input1: input1 = raw_input("Enter numbers to add") lon = lon + input1 print lon This program is supposed to add all ...
2
votes
3answers
228 views

Python how to get sum of numbers in a list that has strings in it as well

I have a dict, d = {'a': [4,'Adam', 2], 'b': [3,'John', 4], 'c': [4,'Adam', 3], 'd': [4,'Bill', 3], 'e': [4,'Bob'], 'f': [4, 'Joe'], 'g': [4, 'Bill']} Is there any quick way to get a sum of the ...
2
votes
1answer
824 views

How do I get the sum of given numbers in prolog?

I'm new to prolog and I'm doing some exercises for practice. So I'm trying to get the sum of the given numbers in a list. I'm trying to use this: my_last(X, [X]). my_last(X, [_|L]) :- my_last(X, ...
11
votes
2answers
209 views

How to find the list in a list of lists whose sum of elements is the greatest?

I have a list of lists: x = [[1,2,3], [4,5,6], [7,8,9], [2,2,0]] I want to get the list whose sum of its elements is the greatest in the list. In this case [7,8,9]. I'd rather have a fancy map or ...
1
vote
2answers
89 views

operations on lists using zip or array

I am wondering what is the best to do if I want to sum the elements (elements by elements) of two lists named l1 and l2: l3 = [i + j for i, j in zip(l1,l2)] or converting the lists as arrays and ...
0
votes
2answers
123 views

Taking the sum of a sliding window of indices in python

I have looked around but have been unable to find out why my code is failing, and how to do it right. I'm new (3 days) to coding, so forgive my noobishness. I start with a list of integers, and ...
0
votes
4answers
351 views

Summing elements in a list

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 ...
5
votes
4answers
341 views

Summing over lists in python - is there a better way?

Is there a more sensible way of doing this? I want to make a new list by summing over the indices of a lot of other lists. I'm fairly new to programming and this seems like a very clunky method! ...
0
votes
1answer
167 views

TypeError: 'NoneType' object is not iterable given when using 'sum()' on a list

I am getting TypeError: 'NoneType' object is not iterable when I try to find the sum of a list. Where the problem occurs: if(sum(self._candidates) + self._allCandidates[self._depth]._weight > ...
45
votes
1answer
2k views

Sum range of int's in List<int>

I reckon this will be quite trivial but I can't work out how to do it. I have a List<int> and I want to sum a range of the numbers. Say my list is: var list = new List<int>() { 1, 2, ...
0
votes
2answers
425 views

Sum elements in list under condition(python)

sum( int(i.replace(',',''))if re.search('\d',i)!=None for i in list) I would like to sum all elements in a list. The problems is that elements are strings, some of them have numbers in them and i ...
0
votes
2answers
136 views

Get total days in a list of dates C#

I just want to get the total days in a list of dates. Here is my code it is returning 10 days, it should print 4 days or so. static void Main(string[] args) { //Initializes new List of DataTime ...
2
votes
2answers
340 views

Extension method, SumIf on generic List<T>

I need to write an generic extension method for List(T) that conditionally considers each string property of T, then sums a corresponding decimal property of T if a condition is met. My effort thus ...
3
votes
4answers
2k views

How can I use sum() function for a list in Python?

I am doing my homework and it requirers me to use a sum () and len () functions to find the mean of an input number list, when I tried to use sum () to get the sum of the list, I got an error ...
0
votes
2answers
289 views

Large lists of numbers

I have to do calculations with the numbers from a text file, with the text file containing around 24,000 floats, and I have used this to read the lines from the text file into a list: returns = ...
2
votes
4answers
1k views

Finding the sum of matching components in two lists

I have two lists: A = [1, 2, 3, 4, 5] B = [6, 7, 8, 9, 10] And I need to be able to find the sum of the nth terms from both lists i.e. 1+6, 2+7, 3+8 etc Could someone please tell me how to refer ...
0
votes
3answers
1k views

Sum elements in a list of lists and find maximum in Python

I don't know how to do this: I have a list of lists defined like this: list=[[day,type,expense],[...]]; day and expense are int, type is string I need to find the max expense by day. An example: ...
1
vote
1answer
211 views

Generate all possible lists of length N that sum to S in Python

I'm trying to generate all possible lists of Length N that sum to S. I've written some code to do so, but on anything large (in particular, I want N=5, S=100), I run into memory overflow errors. I'm ...
1
vote
1answer
343 views

Summing values in Sencha List via Grouping and displaying in Group Header list item

Could somebody give me a little info on how I might go about adding a summarized value to the header of a grouped list. For example. I have the model {firstname, lastname} and say 10 records. I ...
1
vote
1answer
98 views

Summing Only First Values When in Dictionary When Keys Correspond To Lists (Python)

I'm working in python 2.7. I have a list of teams in the following dictionary: NL = {'Phillies': [662, 476], 'Braves': [610, 550], 'Mets': [656, 687]} The first value in the list is the amount of ...
0
votes
1answer
346 views

How can i find the sum of a list of functions in R?

So i have a list of functions.I want to create a for loop that returns (obviously as a function) the sum of them. In order to create a list of functions inside a for loop i am using this code ##CODE ...
1
vote
4answers
493 views

Python: Summing class instances inside a list

I am familiar with the built-in sum() function for lists and have used it before, eg: sum(list1[0:41]) when the list contains integers, but I'm in a situation where I have instances from a Class ...
-2
votes
6answers
314 views

I have a very big list of dictionaries and I want to sum the insides

Something like {A: 3, 45, 34, 4, 2, 5, 94, 2139, 230345, 283047, 230847}, {B: 92374, 324, 345, 345, 45879, 34857987, 3457938457), {C: 23874923874987, 2347} How can I reduce that to {A: ...
0
votes
1answer
92 views

Adding elements within a Python list of list based on a comparison

I have a list of list that looks like this: ['000000000000012', 'AUD ', ' -1500000.0000', '29473550', 'TD CASH', 'Currencies', 'Unsettled Transactions', 'Unsettled'] ['000000000000012', 'BRL ', ...
3
votes
2answers
157 views

Python: joining 2 lists of the same size

Let's say I have 2 following lists: list1 = [1,1,1,1] list2 = [3,3,3,3] I want the result of join to be: list3 [4,4,4,4] What's would be the best way to do it?
0
votes
3answers
2k views

Sum one number to every element in a list (or array) in Python

Here I go with my basic questions again, but please bear with me. In Matlab, is fairly simple to add a number to elements in a list: a = [1,1,1,1,1] b = a + 1 b then is [2,2,2,2,2] In python this ...
0
votes
1answer
120 views

A Python Problem: A function that calculates a value from two given dictionaries

This is a tutorial problem that I have come across and after learning Python for about a month now, this really challenges me since I haven't encountered this type of problem before. I want to ...
4
votes
5answers
395 views

How do add values of selective rows from a list in an functional style?

I solved my problem in an imperative style, but it looks very ugly. How can I make it better (more elegant, more concise, more functional - finally its Scala). Rows with the same values as the ...
6
votes
7answers
33k views

Help me to sum a list of numbers in Python

If I have a list of numbers such as [1,2,3,4,5...] and I want to calculate (1+2)/2 and for the second, (2+3)/2 and the third, (3+4)/2, and so on. How can I do that? I would like to sum the first ...

1 2