Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Simple Python Permutation Passing argument as the second parameter

from itertools import permutations 
a=permutations ([1,2,3],2) 
for i in a: 
  print(i)
Source by softhunt.net #
 
PREVIOUS NEXT
Tagged: #Simple #Python #Permutation #Passing #argument #parameter
ADD COMMENT
Topic
Name
3+1 =