w3resource

Python: Compute the difference between two lists

Python List: Exercise - 52 with Solution

Write a Python program to compute the difference between two lists.

Python: Compute the difference between two lists

Sample Solution :-

Python Code :

from collections import Counter
color1 = ["red", "orange", "green", "blue", "white"]
color2 = ["black", "yellow", "green", "blue"]
counter1 = Counter(color1)
counter2 = Counter(color2)
print("Color1-Color2: ",list(counter1 - counter2))
print("Color2-Color1: ",list(counter2 - counter1))

Sample Output:

Color1-Color2:  ['red', 'white', 'orange']                                                                    
Color2-Color1:  ['black', 'yellow']  

Flowchart:

Flowchart: Compute the difference between two lists

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to split a list every Nth element.
Next: Write a Python program to create a list with infinite elements.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Returns True if the provided function returns True for every element in the list, False otherwise:

Example:

def tips_every(lst, fn=lambda x: x):
  return all(map(fn, lst))

print(tips_every([2, 4, 3], lambda x: x > 1))
print(tips_every([1, 2, 3]))

Output:

True
True