摘要: Code1 a = [1,2,2,3]2 b = [for item in a if item not in b]3 4 c = []5 for item in a:6 if item not in c:7 c.append(item)b -- [1,2,2,3]c -- [... 阅读全文
posted @ 2014-09-05 10:51 mess4u 阅读(133) 评论(0) 推荐(0)