“Permutasi Python” Kode Jawaban

Permutasi Python

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

Permutasi Python

import itertools

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

perm_iterator = itertools.permutations(a, n)

for item in perm_iterator:
    print(item)
Kodi4444

Menggunakan fungsi permutasi Python dalam daftar

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

Menggunakan fungsi permutasi Python pada string

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

Semua permutasi Python


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

Cautious Cod

Python Semua permutasi string

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

Jawaban yang mirip dengan “Permutasi Python”

Pertanyaan yang mirip dengan “Permutasi Python”

Lebih banyak jawaban terkait untuk “Permutasi Python” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya