The identity operator in Python

Source: Internet
Author: User
Tags in python


This article mainly introduces the identification operators in Python, is the basic knowledge of Python learning, need friends can refer to the



The following table lists the identity operators that are supported by all Python languages.



Example:



Try the following examples to understand the identity operators provided by all the Python programming languages:




#!/usr/bin/python A = b = ' if (A is B): print ' line 1-a and B have same identity ' else:print ' line 1-a and b does not have same identity "if (ID (a) = = ID (b)): print" line 2-a and B have same identity "else:print" line 2-a and b do not have same identity "B = More if (A is B): print" line 3-a and B have same identity "Else:print" line 3 -A and B do not have same identity ' if (A is not B): print ' line 4-a and B does not have same identity ' else:print ' Line 4-a and B have same identity "


When the above program is executed it produces the following results:





Line 1-a and B have same identity line 2-a and B have same identity line 3-a and B does not have same identity line 4 -A and B do not have same identity


Note < > : More Wonderful tutorials please focus on Triple programming


Related Article

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.