當前位置:首頁 » 編程語言 » python排列組合

python排列組合

發布時間: 2022-01-28 23:48:29

Ⅰ 在python中如何實現列表中元素的所有排列組合如輸入為['1','2','3']和2輸出為['

#!/usr/bin/python
#Two method for generate a list whose item is all possible permutation and combination come from every item of many list.

A = ['1', '2']
B = ['a', 'b', 'c']
C = ['A', 'B', 'C', 'D']

retList = []
for a in A:
for b in B:
for c in C:
retList.append((a,b,c))
print retList

print '*' * 40

def myfunc(*lists):
#list all possible composition from many list, each item is a tuple.
#Here lists is [list1, list2, list3], return a list of [(item1,item2,item3),...]

#len of result list and result list.
total = rece(lambda x, y: x * y, map(len, lists))
retList = []

#every item of result list.
for i in range(0, total):
step = total
tempItem = []
for l in lists:
step /= len(l)
tempItem.append(l[i/step % len(l)])
retList.append(tuple(tempItem))

return retList

print myfunc(A,B,C)

Ⅱ 怎麼樣讓python計算任意六位數的排列組合

from itertools import proct
for i in proct(range(2),repeat=6):
print i

Ⅲ 如何用Python列出N個數字的所有排列組合

>> from itertools import combinations, permutations
>> permutations([1, 2, 3], 2)
<itertools.permutations at 0x7febfd880fc0>
# 可迭代對象
>> list(permutations([1, 2, 3], 2)) #排列
[(1, 2), (1, 3), (2, 1), (2, 3), (3, 1), (3, 2)]
>> list(combinations([1, 2, 3], 2)) #組合
[(1, 2), (1, 3), (2, 3)]

Ⅳ Python取隨機數排列組合

沒懂你的意思,既然是排列組合,就是針對3個固定元素。
如果3個元素本身就是隨機的,就不用排列了,下面的getplans函數也就沒有意義,直接循環2-5行代碼就好。

Ⅳ python 實現6個數的排列組合,每個數可選值為0和1

fromitertoolsimportproct
foriinproct(range(2),repeat=6):
printi

Ⅵ python新手問題:排列組合與輸出最大數

python2.7語法

第一個問題:

Ⅶ 通過python實現0,1,2,3四個數排列組合可以組成多少個數

##縮進格式看圖

import itertools

c=0

for e in itertools.permutations('0123',4):

print(''.join(e).lstrip('0'),end=',')

c+=1

print(' 共%d個'%(c))

熱點內容
安卓紅包雷神怎麼樣 發布:2024-11-16 15:53:17 瀏覽:392
支付密碼是對的怎麼辦 發布:2024-11-16 15:45:20 瀏覽:175
安卓動態庫反編譯 發布:2024-11-16 15:23:04 瀏覽:374
什麼是奧維伺服器lp地址 發布:2024-11-16 15:20:13 瀏覽:10
c數字圖像處理源碼 發布:2024-11-16 15:13:28 瀏覽:402
為什麼蘋果處理器一直比安卓好 發布:2024-11-16 15:13:22 瀏覽:153
折標演算法 發布:2024-11-16 15:07:10 瀏覽:475
如何做好編譯類節目 發布:2024-11-16 14:56:51 瀏覽:977
正版激活伺服器搭建 發布:2024-11-16 14:47:04 瀏覽:778
安卓導航cd怎麼用 發布:2024-11-16 14:37:06 瀏覽:801