登录 注册
names = ['peter','lilei','wanghwu','xiaoming','peter'] set = set(names) print(set)
集合中的元素是无序的,不可以有重复的对象,因此可以通过集合把重复的数据去除。
0