Write a Python program that updates set1 by adding items from set2, except common items
Topic: Write a Python program that updates set1 by adding items from set2, except common items
Solution
set1 = {10, 20, 30, 40, 50} set2 = {30, 40, 50, 60, 70} set1.symmetric_difference_update(set2) print(set1)
List all Python Programs