获取列表中的所有非唯一元素

时间:2018-05-13 12:29:18

标签: python python-3.x list

我正在尝试构建一个代码,该代码返回一个包含非唯一值的列表,例如[1,2,2,3] => [2,2]并且该功能不区分大小写,例如:['p','P','a','b',1,5,6] => ['p','P']

这是我到目前为止所提出的:

def non_unique(*data):
    tempLst = [x for x in data if (data.count(x) > 1 if (ord('a') <= ord(x) <= ord('z') or ord('A') <= ord(x) <= ord('Z')) and (data.count(x.upper()) + data.count(x.lower()) > 1)]
    return tempLst

以下是测试示例:

if __name__ == "__main__":
    assert isinstance(non_unique([1]), list)
    assert non_unique([1, 2, 3, 1, 3]) == [1, 3, 1, 3]
    assert non_unique([1, 2, 3, 4, 5]) == []
    assert non_unique([5, 5, 5, 5, 5]) == [5, 5, 5, 5, 5]
    assert non_unique([10, 9, 10, 10, 9, 8]) == [10, 9, 10, 10, 9]


    assert non_unique(['P', 7, 'j', 'A', 'P', 'N', 'Z', 'i',
                   'A', 'X', 'j', 'L', 'y', 's', 'K', 'g',
                   'p', 'r', 7, 'b']) == ['P', 7, 'j', 'A', 'P', 'A', 'j', 'p', 7]

1 个答案:

答案 0 :(得分:0)

所以我想出答案:

def non_unique(data):
    tempLst = []
    for letter in data:
        if type(letter) == type('a'):
            if letter.lower() in tempLst or letter.upper() in tempLst:
                tempLst.append(letter)
            elif data.count(letter.lower()) + data.count(letter.upper()) > 1:
                tempLst.append(letter)
        else:
            if data.count(letter) > 1:
                tempLst.append(letter)
    return tempLst

如果有人有较短版本,请评论:)