“перестановка строки в Python” Ответ

Python все перестановки строки

>>> from itertools import permutations
>>> perms = [''.join(p) for p in permutations('stack')]
>>> perms
Worrisome Wallaby

перестановка строки в Python

# 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)
SHAM3R

Ответы похожие на “перестановка строки в Python”

Вопросы похожие на “перестановка строки в Python”

Больше похожих ответов на “перестановка строки в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования