在Python编程中,set()
函数用于创建一个集合对象。集合是一个无序的、不重复的元素序列。以下是一些常见的使用set()
函数进行集合操作的示例:
# 使用花括号创建集合
my_set = {1, 2, 3, 4, 5}
# 使用set()函数创建集合
another_set = set([1, 2, 3, 4, 5])
my_set.add(6)
print(my_set) # 输出:{1, 2, 3, 4, 5, 6}
my_set.remove(6)
print(my_set) # 输出:{1, 2, 3, 4, 5}
print(3 in my_set) # 输出:True
print(7 in my_set) # 输出:False
print(len(my_set)) # 输出:5
# 并集
union_set = my_set.union({4, 5, 6})
print(union_set) # 输出:{1, 2, 3, 4, 5, 6}
# 交集
intersection_set = my_set.intersection({4, 5, 6})
print(intersection_set) # 输出:{4, 5}
# 对称差集
symmetric_difference_set = my_set.symmetric_difference({4, 5, 6})
print(symmetric_difference_set) # 输出:{1, 2, 3, 6}
# 子集
subset_set = my_set.issubset({4, 5, 6})
print(subset_set) # 输出:False
# 超集
superset_set = {4, 5, 6}.issuperset(my_set)
print(superset_set) # 输出:True
通过这些示例,你可以优雅地使用set()
函数进行集合操作。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。