【整理】python中去除数组List中重复的值,即数组去重
crifan 13年前 (2012-03-16) 9639浏览 2评论
参考代码: def unique(old_list): newList = [] for x in old_list: if x not in newList : newList.append(...
crifan 13年前 (2012-03-16) 9639浏览 2评论
参考代码: def unique(old_list): newList = [] for x in old_list: if x not in newList : newList.append(...