當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python Itertools.Permutations()用法及代碼示例

Itertool是Python提供的一個模塊,用於創建有效循環的迭代器。它還提供了與迭代器一起使用的各種函數,以產生複雜的迭代器,並幫助我們輕鬆,高效地解決時間和內存方麵的問題。 Itertools模塊為我們提供了多種方法來操縱遍曆的序列。

此模塊提供的不同類型的迭代器為:

注意:有關更多信息,請參閱Python Itertools。


Itertools.permutation()

Itertools.permutation()函數屬於組合發電機。用於簡化組合結構(例如排列,組合和笛卡爾積)的遞歸生成器稱為組合迭代器。

如單詞“Permutation”所理解的,它指的是可以對集合或字符串進行排序或排列的所有可能的組合。同樣在這裏itertool.permutations()方法為我們提供了迭代器可能存在的所有可能的安排,並且所有元素均根據該位置而不是根據其值或類別被假定為唯一。所有這些排列都是按字典順序提供的。函數itertool.permutations()接受一個迭代器和“ r”(需要排列的長度)作為輸入,並假設“ r”作為迭代器的默認長度(如果未提及),並分別返回所有可能的長度為“ r”的排列。

用法:

Permutations(iterator, r)

示例1:

from itertools import permutations  
  
  
a = "GeEK"
  
# no length entered so default length 
# taken as 4(the length of string GeEK) 
p = permutations(a)  
  
# Print the obtained permutations  
for j in list(p):  
    print(j) 

輸出:-

('G', 'e', 'E', 'K')
('G', 'e', 'K', 'E')
('G', 'E', 'e', 'K')
('G', 'E', 'K', 'e')
('G', 'K', 'e', 'E')
('G', 'K', 'E', 'e')
('e', 'G', 'E', 'K')
('e', 'G', 'K', 'E')
('e', 'E', 'G', 'K')
('e', 'E', 'K', 'G')
('e', 'K', 'G', 'E')
('e', 'K', 'E', 'G')
('E', 'G', 'e', 'K')
('E', 'G', 'K', 'e')
('E', 'e', 'G', 'K')
('E', 'e', 'K', 'G')
('E', 'K', 'G', 'e')
('E', 'K', 'e', 'G')
('K', 'G', 'e', 'E')
('K', 'G', 'E', 'e')
('K', 'e', 'G', 'E')
('K', 'e', 'E', 'G')
('K', 'E', 'G', 'e')
('K', 'E', 'e', 'G')

示例2:

from itertools import permutations   
      
print ("All the permutations of the given list is:")    
print (list(permutations([1, 'geeks'], 2)))   
print()   
   
print ("All the permutations of the given string is:")    
print (list(permutations('AB')))   
print()   
      
print ("All the permutations of the given container is:")    
print(list(permutations(range(3), 2)))  

輸出:-

All the permutations of the given list is:
[(1, 'geeks'), ('geeks', 1)]

All the permutations of the given string is:
[('A', 'B'), ('B', 'A')]

All the permutations of the given container is:
[(0, 1), (0, 2), (1, 0), (1, 2), (2, 0), (2, 1)]



注:本文由純淨天空篩選整理自sahivam4u大神的英文原創作品 Python – Itertools.Permutations()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。