set(集合) set中的数据是唯一的,set中的数据可以改变,set中的数据是可变的
创建set
li=set({"hello","nice"}) //如果创建一个空的,只能li=set() li={"hello","nice"} m=["hello","nice"] li=set(m) //通过一个可迭代来创建set
2.set的一些方法
a.difference(b) //a和b都是set 返回的是在a中,不在b中的元素 a,b不改变 a.difference_update(b) //返回值是none,a的值变成在a中不在b中的元素 a.intersection(b) //a和b的交集 remove方法删除集合中不存在的数据会报错 discard则不会