Python list append and + difference analysis _python

Source: Internet
Author: User

When you use a list in Python, you often need to add an element to a list, like the following two ways to use:

Copy Code code as follows:

t = [1, 2, 3]
T1 = T.append ([4])
t2 = t + [4]

The above two ways of using are different, let's take a look at the actual effect of the operation:

Copy Code code as follows:

>>> t = [1, 2, 3]
>>> T1 = T.append ([4])
>>> T
[1, 2, 3, [4]]
>>> T1
>>>
>>> t2 = t + [4]
>>> T2
[1, 2, 3, [4], 4]
>>> T
[1, 2, 3, [4]]

As you can see Using T.append ([4]), it actually increases in the list of T, not what we expect to increase in T1, and T1 to none at this point.

Instead of using t2 = t + [4], T2 adds another element 4 on the basis of the original T1 and the element in the actual list T is unchanged.

Conclusion:

Using append is actually modifying a list, using + is actually creating a new list.

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.