Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python Lambda Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 范围 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均数 中位数 众数 标准差 百分位数 数据分布 正态数据分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K-均值 自助聚合 交叉验证 AUC - ROC 曲线 K-最近邻

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入 MySQL 选择 MySQL Where MySQL 排序 MySQL 删除 MySQL 删除表 MySQL 更新 MySQL 限制 MySQL 连接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入 MongoDB 查找 MongoDB 查询 MongoDB 排序 MongoDB 删除 MongoDB 删除集合 MongoDB 更新 MongoDB 限制

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 词汇表

模块参考

Random 模块 Requests 模块 Statistics 模块 Math 模块 cMath 模块

Python 如何

删除列表重复项 反转字符串 添加两个数字

Python 示例

Python 示例 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

Python - 合并集合


合并集合

在 Python 中,有几种方法可以合并两个或多个集合。

union()update() 方法将合并来自两个集合的所有项。

intersection() 方法只保留重复项。

difference() 方法保留第一个集合中不在其他集合中的项。

symmetric_difference() 方法保留除重复项以外的所有项。


并集

union() 方法返回一个包含来自两个集合的所有项的新集合。

示例

将 set1 和 set2 合并到一个新的集合中

set1 = {"a", "b", "c"}
set2 = {1, 2, 3}

set3 = set1.union(set2)
print(set3)
试试看 »

您可以使用 | 运算符代替 union() 方法,您将获得相同的结果。

示例

使用 | 连接两个集合

set1 = {"a", "b", "c"}
set2 = {1, 2, 3}

set3 = set1 | set2
print(set3)
试试看 »

连接多个集合

所有连接方法和运算符都可用于连接多个集合。

使用方法时,只需在括号中添加更多集合,并用逗号分隔。

示例

使用 union() 方法连接多个集合

set1 = {"a", "b", "c"}
set2 = {1, 2, 3}
set3 = {"John", "Elena"}
set4 = {"apple", "bananas", "cherry"}

myset = set1.union(set2, set3, set4)
print(myset)
试试看 »

使用 | 运算符时,用更多 | 运算符分隔集合

示例

使用 | 连接两个集合

set1 = {"a", "b", "c"}
set2 = {1, 2, 3}
set3 = {"John", "Elena"}
set4 = {"apple", "bananas", "cherry"}

myset = set1 | set2 | set3 |set4
print(myset)
试试看 »

连接集合和元组

union() 方法允许您将集合与其他数据类型(如列表或元组)连接起来。

结果将是一个集合。

示例

将集合与元组连接

x = {"a", "b", "c"}
y = (1, 2, 3)

z = x.union(y)
print(z)
试试看 »

注意: | 运算符仅允许您将集合与集合连接,而不能与其他数据类型连接,如使用 union() 方法。


更新

update() 方法将一个集合中的所有项目插入到另一个集合中。

update() 会更改原始集合,不会返回新的集合。

示例

update() 方法将 set2 中的项目插入 set1 中。

set1 = {"a", "b" , "c"}
set2 = {1, 2, 3}

set1.update(set2)
print(set1)
试试看 »

注意: union()update() 都将排除任何重复项。



交集

仅保留重复项

intersection() 方法将返回一个新集合,该集合只包含两个集合中都存在的项目。

示例

连接 set1 和 set2,但只保留重复项

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1.intersection(set2)
print(set3)
试试看 »

您可以使用 & 运算符代替 intersection() 方法,您将获得相同的结果。

示例

使用 & 连接两个集合

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1 & set2
print(set3)
试试看 »

注意: & 运算符仅允许您将集合与集合连接,而不能与其他数据类型连接,如使用 intersection() 方法。

intersection_update() 方法也将仅保留重复项,但它将更改原始集合,而不是返回新集合。

示例

保留 set1set2 中都存在的项目

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set1.intersection_update(set2)

print(set1)
试试看 »

True1 被认为是相同的值。 False0 也是如此。

示例

连接包含值 TrueFalse10 的集合,看看哪些被认为是重复项

set1 = {"apple", 1,  "banana", 0, "cherry"}
set2 = {False, "google", 1, "apple", 2, True}

set3 = set1.intersection(set2)

print(set3)
试试看 »

差集

difference() 方法将返回一个新集合,该集合将只包含第一个集合中不在另一个集合中的项目。

示例

保留 set1 中所有不在 set2 中的项目

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1.difference(set2)

print(set3)
试试看 »

您可以使用 - 运算符代替 difference() 方法,您将获得相同的结果。

示例

使用 - 连接两个集合

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1 - set2
print(set3)
试试看 »

注意: - 运算符仅允许您将集合与集合连接,而不能与其他数据类型连接,如使用 difference() 方法。

difference_update() 方法也将保留第一个集合中不在另一个集合中的项目,但它将更改原始集合,而不是返回新集合。

示例

使用 difference_update() 方法保留不在两个集合中的项目

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set1.difference_update(set2)

print(set1)
试试看 »

对称差集

symmetric_difference() 方法将只保留不在两个集合中的元素。

示例

保留不在两个集合中的项目

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1.symmetric_difference(set2)

print(set3)
试试看 »

您可以使用 ^ 运算符代替 symmetric_difference() 方法,您将获得相同的结果。

示例

使用 ^ 连接两个集合

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set3 = set1 ^ set2
print(set3)
试试看 »

注意: ^ 运算符仅允许您将集合与集合连接,而不能与其他数据类型连接,如使用 symmetric_difference() 方法。

symmetric_difference_update() 方法也将保留所有重复项以外的项目,但它将更改原始集合,而不是返回新集合。

示例

使用 symmetric_difference_update() 方法保留不在两个集合中的项目

set1 = {"apple", "banana", "cherry"}
set2 = {"google", "microsoft", "apple"}

set1.symmetric_difference_update(set2)

print(set1)
试试看 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.