python列表不重复的方法:
python内置的set()方法可以去掉列表里面重复的元素,调用该方法就可以让python列表不重复了
a = [23, 15, 15, 56, 89, 89, 56] a = set(a) print(a)
运行结果如下:
更多Python知识,请关注:!!