Description: Mark operators in Python

Source: Internet
Author: User
This article mainly introduces the identity operators in Python, which are the basic knowledge of Python learning. If you need them, refer to the following table to list the identity operators supported by all Python languages.

Example:

The following example shows the identity operators provided by all Python programming languages:

#! /Usr/bin/pythona = 20b = 20if (a is B): print "Line 1-a and B have same identity" else: print "Line 1-a and B do 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 = 30if (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 do not have same identity" else: print "Line 4-a and B have same identity"

When the above program is executed, it will produce the following results:

Line 1-a and B have same identityLine 2-a and B have same identityLine 3-a and B do not have same identityLine 4-a and B do not have same identity

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.