Python ตั้งค่าintersection_update() Method
ตัวอย่าง
ลบรายการที่ไม่มีอยู่ในทั้งสองx
และy
:
x =
{"apple", "banana", "cherry"}
y = {"google",
"microsoft", "apple"}
x.intersection_update(y)
print(x)
ความหมายและการใช้งาน
เมธอด จะintersection_update()
ลบรายการที่ไม่มีอยู่ในทั้งสองชุด (หรือในทุกชุดหากทำการเปรียบเทียบระหว่างชุดมากกว่าสองชุด)
วิธี การintersection_update()
นี้แตกต่างจากintersection()
วิธีการ เนื่องจาก
intersection()
วิธีการคืนค่าชุดใหม่โดยไม่มีรายการที่ไม่ต้องการ และ
intersection_update()
วิธีการลบรายการที่ไม่ต้องการออกจากชุดเดิม
ไวยากรณ์
set.intersection_update(set1, set2 ... etc)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
set1 | Required. The set to search for equal items in |
set2 | Optional. The other set to search for equal items in. You can compare as many sets you like. Separate the sets with a comma |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
เปรียบเทียบ 3 ชุด และคืนชุดที่มีรายการที่มีอยู่ในทั้ง 3 ชุด:
x =
{"a", "b", "c"}
y = {"c",
"d", "e"}
z = {"f",
"g", "c"}
x.intersection_update(y, z)
print(x)