“Permutationen in Python” Code-Antworten

Alle Permutationen Python

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

Python -Permutation

import itertools

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

perm_iterator = itertools.permutations(a, n)

for item in perm_iterator:
    print(item)
Kodi4444

Verwenden der Python -Permutationen Funktion auf einer Zeichenfolge

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

Alle Permutationen Python


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

Cautious Cod

Python Alle Permutationen einer Saite

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

Permutationen in Python

T=[i for i in range(8)]
for i in range(8):
             print("T[",i,"]= ",end="")
             T[i]=int(input())
print("Tableau avant permutation")
print(T)
k=7
for i in range(4):
             X=T[i]
             T[i]=T[k]
             T[k]=X
             k=k-1
print("Tableau après permutation")
print(T)
Exuberant Earthworm

Ähnliche Antworten wie “Permutationen in Python”

Fragen ähnlich wie “Permutationen in Python”

Weitere verwandte Antworten zu “Permutationen in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen