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 :

# Import the 'Counter' class from the 'collections' module
from collections import Counter

# Define two lists 'color1' and 'color2' containing color names
color1 = ["red", "orange", "green", "blue", "white"]
color2 = ["black", "yellow", "green", "blue"]

# Create Counter objects 'counter1' and 'counter2' for each list to count the occurrences of color names
counter1 = Counter(color1)
counter2 = Counter(color2)

# Print the elements that are in 'counter1' but not in 'counter2' (Color1-Color2)
print("Color1-Color2: ", list(counter1 - counter2))

# Print the elements that are in 'counter2' but not in 'counter1' (Color2-Color1)
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

Python Code Editor:

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/list/python-data-type-list-exercise-52.php