Python implements permutations and combinations

Source: Internet
Author: User

1.python language is simple, convenient, the internal can be quickly implemented permutation combination algorithm, the following is a brief introduction, 2. A list of data any combination 2.1 is mainly the use of their own library
#_*_ coding:utf-8 _*_#__author__=‘dragon‘import itertoolslist1 = [1,2,3,4,5]list2 = []for i in range(1,len(list1)+1): iter = itertools.combinations(list1,i) list2.append(list(iter))print(list2)
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

3. Implementation of permutations
#_*_ coding:utf-8 _*_#__author__=‘dragon‘import itertoolslist1 = [1,2,3,4,5]list2 = []for i in range(1,len(list1)+1): iter = itertools.permutations(list1,i) list2.append(list(iter))print(list2)
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

Can be combined according to your needs

Python implements permutations and combinations

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.