Python learning: Object-oriented

Source: Internet
Author: User

Python learning: Object-oriented

I. first look at a program

A = [1, 2, 3] B = a B [0] = 0 print bprint

Can you guess the execution result? Let's execute:

[0, 2, 3] [0, 2, 3]


Why? We only modified the values of the B set. Why does a change?

Because when B = a, objects a and B are actually directed to the same memory [1, 2, 3]


Ii. Let's take a look.

In the same way, what if I modify the value of?

A = [1, 2, 3] B = a B [0] = 0a [-1] = 4 print bprint

Then modify the last element of a to 4. Have you guessed the execution result?

Yes:

[0, 2, 4]
[0, 2, 4]

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.