<div dir="ltr">I mean zip(self, other)<br><br>On Friday, August 19, 2016 at 6:46:57 AM UTC-4, Neil Girdhar wrote:<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir="ltr">Both Mapping and Set provide __eq__ and __ne__.  I was wondering why not have Sequence do the same?<div><br></div><div><div><div><br></div><div>class Sequence(Sized, Reversible, Container):</div><div><br></div><div>    def __eq__(self, other):</div><div>        if not isinstance(other, Sequence):</div><div>            return NotImplemented</div><div>        if len(self) != len(other):</div><div>            return False</div><div>        for a, b in self, other:</div><div>            if a != b:</div><div>                return False</div><div>        return True</div></div></div></div></blockquote></div>