Python之数组去除重复元素

方法一:li = {}.fromkeys(listname).keys()

    x1 = ['b', 'c', 'd', 'b', 'c', 'a', 'a', 'b', 'c', 'd', 'b', 'c', 'a', 'a']
    x2 = {}.fromkeys(l1).keys()
    print x2


方法二:li = list(set(listname))

    x1 = ['b', 'c', 'd', 'b', 'c', 'a', 'a','b', 'c', 'd', 'b', 'c', 'a', 'a']
    x2 = list(set(l1))
    print l2

你可能感兴趣的:(python)