码迷,mamicode.com
首页 > 其他好文 > 详细

交集,并集,差集,函数

时间:2019-08-30 19:34:38      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:nio   section   集合   amp   交集   lis   return   不可变   差集   

ale=["a","b","c"]  you=["a","e","s"]

f=set(ale)

g=set(you)            set把列表放到集合里去

交集:interscetion

  print(f.intersection g)

  print(f&g)

并集:union

  print(f.union g)

  print(f|g)

差集:

  print(f-g)

注意事项:

1.不可变集合:frozenset

  q=frozenset(ale)

2.去重并列列表:

  p=lise(set(ale))

函数

1.def test(x):

  "j解释含义"

  return y #返回结果

  print(test)

  a=text(x变量)

  print(a)

交集,并集,差集,函数

标签:nio   section   集合   amp   交集   lis   return   不可变   差集   

原文地址:https://www.cnblogs.com/cui00/p/11436358.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!