“перестановки 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 в списке

from itertools import permutations
a=permutations([1,2,3,4],2) 
for i in a: 
   print(i)
Outrageous Ostrich

Использование функции перестановок Python на строке

from itertools import permutations 
string="SOFT"
a=permutations(string) 
for i in list(a): 
   # join all the letters of the list to make a string 
   print("".join(i))
Outrageous Ostrich

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


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

Cautious Cod

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

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

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

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

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

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

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