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

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

import itertools
print(list(itertools.permutations([1,2,3])))
Smiling Sable

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

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

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