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

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

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

ПИТОН ПЕРСИТ

import itertools

a = [1, 2, 3]
n = 3

perm_iterator = itertools.permutations(a, n)

for item in perm_iterator:
    print(item)
Kodi4444

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


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

Cautious Cod

Как найти перестановку чисел в Python

def permute(LIST):
    length=len(LIST)
    if length <= 1:
        yield LIST
    else:
        for n in range(0,length):
             for end in permute( LIST[:n] + LIST[n+1:] ):
                 yield [ LIST[n] ] + end

for x in permute(["3","3","4"]):
    print x
Shiny Swan

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

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

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

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

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

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

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