Python general method implements the full array of arrays

Source: Internet
Author: User
This example describes the general method of implementing the full array of Python arrays. Share to everyone for your reference. The specific analysis is as follows:

Full permutation explanation: any m (m≤n) elements from n different elements, arranged in a certain order, are called an arrangement of extracting m elements from n different elements. All permutations are called when m=n.

def Perm (L):  if (len (l) <=1):    return [l]  r=[] for  i in range (Len (l)):    s=l[:i]+l[i+1:]    p= Perm (s) for    X in P:      r.append (l[i:i+1]+x)  return R

Call Method:

If __name__== ' __main__ ': "" "   default param is List (1,2,3,4,5)" ""  l=[];   if (Len (SYS.ARGV) <=1): "" "     input=['%d '% (i) for I in Xrange (1,6)]" ""    L=list ((1,2,3,4,5))  else:# Input param looks like "2,3,4,5,6" and no legal checks here.    Input=str (sys.argv[1])    l=input.split (",") for     I in Xrange (Len (L)):       l[i] = Int (l[i])   print perm (l )

Hopefully this article will help you with Python programming.

  • 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.