Python去除列表中的重复项目

只需要一句话就可以达到效果: >>>L = [‘aaa’, ‘bbb’, ‘ccc’, ‘bbb’, ‘aaa’] >>>L [‘a…

Read More