摘要: '''去除列表中不重复的元素,且保证重复元素的次序与原列表一致'''def checkio(data): l =[] for i in data: if data.count(i)>1: l.append(i) return l#These "asserts" using only for sel... 阅读全文
posted @ 2013-06-25 14:59 前行者2011 阅读(120) 评论(0) 推荐(0) 编辑