# Python CodeRecipe|symmetric_difference()の使い方

Home Set Methods

# symmetric_difference()の例1

Return a set that contains all items from both sets, except items that are 
  present in both sets:

    x = {"apple", "banana", "cherry"}y = {"google", "microsoft", "apple"}
z = x.symmetric_difference(y) print(z)

# symmetric_difference()の定義及び使い方

symmetric_difference()関数ドは以下のセットを返します。 両方のセットのすべての項目が含まれますが、両方に存在する項目は含まれません。 セット。 意味:返されたセットには、 両方のセット。

# symmetric_difference()の構文

set.symmetric_difference(set)

# symmetric_difference()の引数

パラメータ 説明

set 必須. The set to check for matches in

Home Set Methods