我正在使用SequenceMatcher来对齐两个列表。每个列表' item是元组或整数。要求是,对于包含特定整数的元组被认为是相等的。 例如:
(1, 2, 3) == 1 #True
(1, 2, 3) == 2 #True
为此,我决定覆盖元组的相等方法:
class CustomTuple(tuple):
def __eq__(self, other):
default_eval = super(CustomTuple, self).__eq__(other)
if default_eval is not True:
return self.__contains__(other)
return default_eval
这是我的示例数据:
x = [22, 16, 11, 16, CustomTuple((11, 19, 20)), 16]
y = [22, 16, CustomTuple((11, 19, 20)), 16, CustomTuple((11, 19, 20)), 16]
使用SequenceMatcher,我期待比率为1.0(相等)。 但结果如下:
>>> sm = SequenceMatcher(None, x, y)
>>> sm.ratio()
0.666666666667
但是当我尝试使用' =='来比较列表时运算符,结果是相等的:
>>> x == y
True
有谁可以指出出了什么问题? 感谢。