Python merge list, append (), extend (), +, + =

Source: Internet
Author: User

The problem of list merging is involved in the actual application.

When you apply append (), the discovery list is appended to the list as an element, and the last query is followed by the Extend () method, and the following is the difference  1.append () appends a new element to the end of the list, which takes up only one index bit and adds 2.extend () appends a list to the end of the list, appending each element in the list to the existing list, adding 3.+ directly with the + sign appears with the same effect as the extend (), but actually generates a new list of the sum of the two lists, which can only be added to two listsThe 4.+= effect, like extend (), appends a new element to the original list, adding  The effect is as follows:

Python merge list, append (), extend (), +, + =

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.