";require "../templates/head_jq_bs4.php";echo "";$img_path="..";require "templates/top_bs4.php"; echo "

symmetric_difference_update() method in Python set

";require "templates/body_start.php";?> All set methods

Update the main set with difference elements only.

Using symmetric_difference_update() method

A={'a','b','c'}B={'a','y','z'}A.symmetric_difference_update(B)print(A)
Output
{'y', 'b', 'c', 'z'}

symmetric_difference_update() method

Using string ( iterable object ) with symmetric_difference_update() method
A={'a','b','c','x','y'}B='Alex'A.symmetric_difference_update(B)print(A)
Output
{'y', 'l', 'A', 'e', 'b', 'a', 'c'}
Using list with symmetric_difference_update() method.
A={'a','b','c'}B=['a','x','y']A.symmetric_difference_update(B)print(A)
Output
{'y', 'x', 'b', 'c'}
All set methods Questions with solutions on set
difference() union() intersection() symmetric_difference()