Pythonでのset文の用法は?
Pythonでは、set文は順序を持たず、重複を許さない集合を作成するために使用できます。set文の適用方法は次のとおりです。
- 集合を作成する:
my_set = set() # 创建一个空的set
my_set = set([1, 2, 3]) # 从列表创建一个set
my_set = {1, 2, 3} # 使用花括号创建一个set
- セットに要素を追加する:
my_set.add(4) # 添加一个元素到set
my_set.update([4, 5, 6]) # 添加多个元素到set
- セットから要素を削除する。
my_set.remove(3) # 从set中移除指定元素
my_set.discard(4) # 如果存在,则从set中移除指定元素
my_set.pop() # 移除set中的任意一个元素
- 集合の反復処理:
for element in my_set:
print(element)
- セット内に要素が存在するか確認する
if 2 in my_set:
print("2 exists in the set")
- 集合演算を行う
set1 = {1, 2, 3, 4}
set2 = {3, 4, 5, 6}
union_set = set1.union(set2) # 并集
intersection_set = set1.intersection(set2) # 交集
difference_set = set1.difference(set2) # 差集
SETステートメントにはさまざまな一般的な使用例があり、ニーズに応じて適用できます。