arr1=['One','Two','Five'],arr2=['Three','Four']
像itertools.combinations(arr1,2)
給我們('OneTwo','TwoFive','OneFive')
我想知道是否有任何應用這兩種不同的arrays.?I意味着ARR1和ARR2方式。python中兩個數組(不同大小)之間可能的獨特組合?
Output should be OneThree,OneFour,TwoThree,TwoFour,FiveThree,FiveFour
的[生成所有獨特的對排列]可能的複製(http://stackoverflow.com/questions/14169122/generating-all-unique-pair-permutations) –