";require "../templates/head_jq_bs4.php";echo "
";$img_path="..";require "templates/top_bs4.php"; echo "
A={'a','b','c'}B={'a','y','z'}A.symmetric_difference_update(B)print(A)Output{'y', 'b', 'c', 'z'}
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