Comparison function of Python2, CMP

Source: Internet
Author: User

classShu (object):def __init__(SELF,SS): SELF.SS=SSdef __str__(self):return '(%s:%s)'%(Self.name, Self.score)__repr__=__str__    def __cmp__(self, s):Print('func __cmp__ work')        ifSELF.SS <S.SS:return-1elifSELF.SS >S.SS:return1Else:            return0a=shu (3) b=shu (2) C=a>b#run __cmp__,c to TrueD=CMP (A, B)#run __cmp__,d to 1, note that D differs from the above C type, an int, a bool

Python2 's comparison function is that CMP.CMP calls the object's __cmp__ method, which is built into the string, Integer, list, and so on.

But the comparison function in Pyhon3 is not CMP anymore.

Comparison function of Python2, CMP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.