功能 | Python符号 | Python方法 | 备注 |
---|---|---|---|
交集 | & | intersection, intersection_update | &:取交集并返回交集 intersection:取交集并返回交集 intersection_update:取交集并将结果更新到前面set中 |
并集 | | | union | |:取并集并返回交集 intersection:取并集并返回并集 |
差集 | - | difference, difference_update | -:取前者与后者的差集并返回差集 difference:取前者与后者的差集并返回差集 intersection_update:取前者与后者的差集并将结果更新到前面set中 |
等于 | == | == | |
不等于 | != | != | |
成员关系 | in | in | |
不是成员关系 | not in | not in |