# Python CodeRecipe|intersection_update()の使い方

Home Set Methods

# intersection_update()の例1

Remove the items that is not present in both x, and set y:

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

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

intersection_update()関数は、 両方のセット (または比較が行われた場合はすべてのセット) に存在しないアイテム 2つ以上のセットの間)。 intersection_update()関数が異なります。 がintersection()関数から呼び出されます。 交差()関数は、不要なアイテムを含まない新しいセットを返し、 intersection_update()関数は、 元のセットの不要なアイテム。

# intersection_update()の構文

set.intersection_update(set1, set2 ... etc)

# intersection_update()の引数

パラメータ 説明

set1 必須. The set to search for equal items in

set2 オプション. The other set to search for equal items in.You can compare as many sets you like.Separate the sets with a comma

# intersection_update()の例2

Compare 3 sets, and return a set with items that is present in all 3 sets:

    x = 
    {"a", "b", "c"}y = {"c", 
    "d", "e"}z = {"f", 
    "g", "c"}x.intersection_update(y, z)print(x)

Home Set Methods