编程语言
首页 > 编程语言> > Python中set集合常用操作

Python中set集合常用操作

作者:互联网

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

标签:返回,set,Python,update,差集,交集,集合,intersection
来源: https://www.cnblogs.com/convict/p/15450765.html