在Python中,可以使用in
關鍵字來判斷一個元素是否存在于集合(set)中。這里有一個簡單的例子:
# 創建一個集合
my_set = {1, 2, 3, 4, 5}
# 判斷元素是否存在于集合中
if 3 in my_set:
print("3 exists in the set")
else:
print("3 does not exist in the set")
輸出結果為:
3 exists in the set
另外,也可以使用set
的issubset()
方法來判斷一個集合是否是另一個集合的子集。例如:
# 創建兩個集合
set_a = {1, 2, 3}
set_b = {1, 2, 3, 4, 5}
# 判斷set_a是否是set_b的子集
if set_a.issubset(set_b):
print("set_a is a subset of set_b")
else:
print("set_a is not a subset of set_b")
輸出結果為:
set_a is a subset of set_b