Python asks for a two-list set difference

Source: Internet
Author: User

I. Two list difference sets

If you have the following two arrays:

A = [1,2,3]

b = [2,3]

The desired result is [1]

Here's a record of three implementations:

1. The normal way

The code is as follows

RET = []
For I in A:
If I not in B:
Ret.append (i)

2. Condensed version

The code is as follows

RET = [I for i in a if I am not in B]

3. Another edition

The code is as follows

ret = List (set (a) ^ set (b))

Www.111cn.net Webmaster personally prefer a third way of implementation

Two. Get the collection of two list

The code is as follows


Print List (set (a). Union (set (b))

Three. Get the difference set of two list

The code is as follows

Print List (set (b). Difference (set (a))) # B and there's nothing in a

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.