摘要: L=[1,2,3,3,5,5,5,8,4,6,9,7,2,'a','s','a','e','s','z']def DelDupli(L): L1=[] for i in L: if i not in L1: L1.append(i) return L1def DelDupli2(L): return 阅读全文
posted @ 2019-09-11 08:56 乔小生1221 阅读(289) 评论(0) 推荐(0) 编辑