📜  python代码示例中字符串的排列

📅  最后修改于: 2022-03-11 14:47:09.498000             🧑  作者: Mango

代码示例2
# Function to find permutations of a given string
from itertools import permutations
  
def allPermutations(str):
       
     # Get all permutations of string 'ABC'
     permList = permutations(str)
  
     # print all permutations
     for perm in list(permList):
         print (''.join(perm))
        
# Driver program
if __name__ == "__main__":
    str = 'ABC'
    allPermutations(str)