对python中两种列表元素去重函数性能的比较方法 测试函数:第一种:list的set函数第二种:{}.fromkeys().keys()测试代码:#!/usr/bin/python#-*-coding:ut 去重函数