http://stackoverflow.com/questions/7961363/python-removing-duplicates-in-lists
myList = [1, 2, 3, 1, 2, 5, 6, 7, 8]
cleanlist = []
[cleanlist.append(x) for x in myList if x not in cleanlist]
[cleanlist.append(x) for x in myList if x not in cleanlist] 这段代码展开后是什么?
myList = [1, 2, 3, 1, 2, 5, 6, 7, 8]
cleanlist = []
[cleanlist.append(x) for x in myList if x not in cleanlist]
[cleanlist.append(x) for x in myList if x not in cleanlist] 这段代码展开后是什么?