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?
|
feedback
|
|
You can use list comprehension, as @Matt suggested. you can also use itertools - more specifically, the
Like all itertools funcitons,
EDIT: As suggested by @Cat below, it would be better to use the
| |||||||||
feedback
|
|
Try this:
This uses | |||||||||
feedback
|
|
Yet another solution below:
ADDITION: Just check for the python reference of | |||||
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.
| |||
|
feedback
|