• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
charlie、
博客园    首页    新随笔    联系   管理    订阅  订阅
集合
list_1 = set([1,2,3,4,5,6])
list_2 = set([5,6,7,8,9,10])

print(list_1.intersection(list_2)) #交集
print(list_1.union(list_2)) #并集
print(list_1.difference(list_2)) #差集(保留list_1里有,list_2没有的)

list_3 = set([1,2,3])
print(list_3.issubset(list_1)) #子集
print(list_1.issuperset(list_3)) #父集

print(list_1.symmetric_difference(list_2)) #对称差集,去重合并,Return the symmetric difference of two sets as a new set

list_4 =set([4,5,6])
print(list_3.isdisjoint(list_4)) #判断list_3 and list_4是否有交集(return True is two set have a null intersection)


posted on 2018-01-24 13:19  charlieCao  阅读(155)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3