Python Set สี่แยก () Method
ตัวอย่าง
ส่งคืนชุดที่มีรายการที่มีอยู่ในทั้ง set
x
และ set y
:
x =
{"apple", "banana", "cherry"}
y = {"google",
"microsoft", "apple"}
z = x.intersection(y)
print(z)
ความหมายและการใช้งาน
วิธี การintersection()
ส่งกลับชุดที่ประกอบด้วยความคล้ายคลึงกันระหว่างสองชุดขึ้นไป
ความหมาย: ชุดที่ส่งคืนมีเฉพาะรายการที่มีอยู่ในทั้งสองชุด หรือในชุดทั้งหมด ถ้าการเปรียบเทียบเสร็จสิ้นกับชุดมากกว่าสองชุด
ไวยากรณ์
set.intersection(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"}
result = x.intersection(y, z)
print(result)