I can't figure out how to make a function in python that can calculate this: List1=[3,5,6] List2=[3,7,2] and the result should be a new list that substracts List2 from List1, List3=[0,-2,4]! I know, that I somehow have to use the zip-function. By doing that I get: ([(3,3), (5,7), (6,2)]), but I don't know what to do now?

link|improve this question

39% accept rate
feedback

4 Answers

You can use list comprehension, as @Matt suggested. you can also use itertools - more specifically, the imap() function:

>>> from itertools import imap
>>> from operator import sub
>>> a = [3,5,6]
>>> b = [3,7,2]
>>> imap(int.__sub__, a, b)
<itertools.imap object at 0x50e1b0>
>>> for i in imap(int.__sub__, a, b):
...     print i
... 
0
-2
4

Like all itertools funcitons, imap() returns an iterator. You can generate a list passing it as a parameter for the list() constructor:

>>> list(imap(int.__sub__, a, b))
[0, -2, 4]
>>> list(imap(lambda m, n: m-n, a, b)) # Using lambda
[0, -2, 4]

EDIT: As suggested by @Cat below, it would be better to use the operator.sub() function with imap():

>>> from operator import sub
>>> list(imap(sub, a, b))
[0, -2, 4]
link|improve this answer
3  
operator.sub is more generic than int.__sub__. And has less underscores. – Cat Plus Plus Nov 19 '11 at 13:15
@CatPlusPlus +1 for operator – Pengyu CHEN Nov 19 '11 at 13:18
@CatPlusPlus excellent suggestion. I added it to the answer. – brandizzi Nov 19 '11 at 13:34
feedback

Try this:

[x1 - x2 for (x1, x2) in zip(List1, List2)]

This uses zip, list comprehensions, and destructuring.

link|improve this answer
I like this way to do it.. I just can't get it to work (I haven't been working in python for a very long time)! I did this: def differences(xs,ys): [x1-x2 for (x1,x2) in zip(xs,ys)]? – Linus Svendsson Nov 19 '11 at 16:54
I get a new list but it contains: [(3, 3), (5, 7), (6, 2)] – Linus Svendsson Nov 19 '11 at 17:05
It is working now.. Thanks – Linus Svendsson Nov 19 '11 at 17:27
@LinusSvendsson -- glad to hear it worked, good luck! – Matt Fenwick Nov 19 '11 at 22:00
feedback

Yet another solution below:

>>> a = [3,5,6]
>>> b = [3,7,2]
>>> list(map(int.__sub__, a, b)) # for python3.x
[0, -2, 4]
>>> map(int.__sub__, a, b) # and for python2.x
[0, -2, 4]

ADDITION: Just check for the python reference of map and you'll see you could pass more than one iterable to map

link|improve this answer
1  
I didn't know that map() accepts more than one iterable. This is great! – brandizzi Nov 19 '11 at 13:35
feedback

This solution uses numpy. It makes sense only for largish lists as there is some overhead in instantiate the numpy arrays. OTOH, for anything but short lists, this will be blazingly fast.

>>> import numpy as np
>>> a = [3,5,6]
>>> b = [3,7,2]
>>> list(np.array(a) - np.array(b))
[0, -2, 4]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.