摘要: 代码: def get_unique_list(n): result=[] for item in lista: if item not in result: result.append(item) return result lista=[10,20,30,10,20] print(f"Sourc 阅读全文
posted @ 2021-10-19 21:41 scholar-for-ever 阅读(40) 评论(0) 推荐(0) 编辑