字典是无序的,列表是有序的 a='zhangsan' print (a[1]) a[2]=222 #字符串不能赋值 集合(set):把不同的元素组成一起形成集合 info=[1,2,34,5,6,7]info=set(info)print(info) 或 info=[1,2,34,5,6,7] se=set(info) print(se) 交集(&) 与集合AND等价,交集符号的等价方法是intersection #交集intersection info=[1,2,34,5,6,7] info=…