Python removes duplicate elements from the list

Source: Internet
Author: User
It is easier to remember with the built-in SETL1 = [' B ', ' C ', ' d ', ' B ', ' C ', ' A ', ' a ']L2 = List (set (L1)) Print L2 There is also a speed difference that is said to be faster, not tested, L1 = [' B ', ' C ', ' d ', ' B ', ' C ', ' A ', ' a ']l2 = {}.fromkeys (L1). Keys () Print L2 both have a drawback: the sorting is changed after removing the repeating element (' A ', ' C ', ' B ', ' d ')   if you want to keep their original sort: Using the Sort method of the list class L1 = [' B ', ' C ', ' d ', ' B ', ' C ', ' A ', ' a ']L2 = List (set (L1)) L2.sort (key=l1.index) print L2 can also write L1 = [' B ', ' C ', ' d ' , ' B ', ' C ', ' A ', ' a ']l2 = sorted (set (L1), key=l1.index) print L2  can also be used to traverse L1 = [' B ', ' C ', ' d ', ' B ', ' C ', ' A ', ' a ']l2 = []for i in  L1:    If not I in L2:        l2.append (i) print L2 The above code can also write L1 = [' B ', ' C ', ' d ', ' B ', ' C ', ' A ', ' a ']L2 = [][l2.append (i) for i in L1 if not I in L2]print L2  This ensures that the sort is constant: [' B ', ' C ', ' d ', ' a ']

  

Python removes duplicate elements from the 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.