“Alle Permutation von 2 Arrays Python” Code-Antworten

Alle Permutation von 2 Arrays Python

>>> import itertools
>>> a = ['foo', 'bar', 'baz']
>>> b = ['x', 'y', 'z', 'w']

>>> for r in itertools.product(a, b): print r[0] + r[1]
foox
fooy
fooz
foow
barx
bary
barz
barw
bazx
bazy
bazz
bazw
Adventurous Addax

Alle Permutation von 2 Arrays Python


>>> import itertools
>>> map(''.join, itertools.chain(itertools.product(list1, list2), itertools.product(list2, list1)))
['squarered', 'squaregreen', 'circlered',
'circlegreen', 'trianglered', 'trianglegreen',
'redsquare', 'redcircle', 'redtriangle', 'greensquare',
'greencircle', 'greentriangle']

Powerful Pelican

Ähnliche Antworten wie “Alle Permutation von 2 Arrays Python”

Fragen ähnlich wie “Alle Permutation von 2 Arrays Python”

Weitere verwandte Antworten zu “Alle Permutation von 2 Arrays Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen