tutorial on the use of the CMP () method in the python2.x version

Source: Internet
Author: User
Tags numeric

This article mainly introduces the python2.x version of the CMP () method of using the tutorial, in the python3.x version of the method is no longer built in, the need for friends can refer to the

The CMP () method returns a symbol of the difference of two numbers: 1 if x < y, 0 if x = = y, or 1 if x > Y.

Grammar

The following is the syntax for the CMP () method:

?

1 CMP (x, y)

Parameters

X--This is a numeric expression

Y--This is also a numeric expression

return value

This method if X

Example

The following example shows the use of the CMP () method

?

1 2 3 4 5 6 #!/usr/bin/python Print CMP:, CMP (MB) print CMP (180): ", CMP (180) print" CMP (-80, 100): " , CMP ( -80) print "CMP ( -100):", CMP (80,-100)

When we run the above program, it produces the following results:

?

CMP ( 1 CMP (180): 1 CMP ( -80, MB):-1 CMP ( -100): 1

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.