Location of integer object storage in Python

Source: Internet
Author: User

The Python integer object is stored in a different location, some of which are stored in a store, while others create space when used.

To say the reason for this sentence, you can look at the following code:

A = 5
b = 5
A is B # True

A = 500
b = 500
A is B # False

As the above code shows, the integer 5 is always there, and the integer 500 is not always there.

So what are the integers that have been stored?

A, b, c = 0, 0, 0
While A is B:
i + = 1
A, b = Int (str (i)), int (str (i))
Else
Print (i) # printing 257

As you know, a nonnegative integer less than or equal to 256 (2**8) is stored all the time.

A =-1
b =-1
A is B # False

Negative numbers are not always stored.

Location of integer object storage in Python

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.