共计 580 个字符,预计需要花费 2 分钟才能阅读完成。
在 Python 中,set 语句用于创建一个无序的、不重复的集合。可以使用以下方法应用 set 语句:
- 创建一个 set:
my_set = set() # 创建一个空的 set
my_set = set([1, 2, 3]) # 从列表创建一个 set
my_set = {1, 2, 3} # 使用花括号创建一个 set
- 添加元素到 set:
my_set.add(4) # 添加一个元素到 set
my_set.update([4, 5, 6]) # 添加多个元素到 set
- 从 set 中移除元素:
my_set.remove(3) # 从 set 中移除指定元素
my_set.discard(4) # 如果存在,则从 set 中移除指定元素
my_set.pop() # 移除 set 中的任意一个元素
- 遍历 set:
for element in my_set:
print(element)
- 检查元素是否存在于 set 中:
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 语句的一些常见用法,可以根据具体需求进行应用。
丸趣 TV 网 – 提供最优质的资源集合!
正文完