I have a program that displays and inventory report and i was just wondering how I could put the following into a list comprehension instead of a for-loop...I'm kind of a noob at all this python jargon but from what i know is that anything that is in the form of a for-loop can also be expressed as a list comprehension....ANY help would be appreciated
def rowSum(TotSize,data,row,col):
"""Calculates the sum of each row in a given 2 dimensional list and stores
it into a given one dimensional list"""
for i in range(row):
sum = 0
for j in range(col):
sum += data[i][j]
TotSize[i] = sum
mapandsumto me (althoughmapand list comprehensions are really just different ways of expressing the same idea). – Adam Mihalcin Mar 28 '12 at 0:04newList = [f(x) for x in otherList]. This is equivalent tomapin many languages:newList = otherList.map(f). Some lists cannot be easily represented this way, like 1D cellular automata, 2D dynamic programming tables, or functions with side-effects (like thesumin your rowSum). (You'd write sums like you do, or usereduce) – ninjagecko Mar 28 '12 at 0:392 dimensional listdo you mean list like this:[[1,2,3],[2,3,4]],and not this:[[1,2],[2,3],[3,4]]? – Gnijuohz Mar 28 '12 at 1:13