集合: 集合是个一个无序的 天然自带去重特性 s = {} # 空{}就是字典 集合的一些基本操作: 增 # s.add(8) # print(s) # s.update('alex') # 迭代添加 # print(s) 增 相关文章: