“Python -kartesischer Produkt” Code-Antworten

kartesischer Produkt einer Liste Python

import itertools

somelists = [
   [1, 2, 3],
   ['a', 'b'],
   [4, 5]
]
for element in itertools.product(*somelists):
    print(element)
Kind Katipo

Python -kartesischer Produkt

# initialize lists
listA = [1, 4, 6, 7]
listB = [1, 3]
  
# Construct Cartesian Product Tuple list
# using list comprehension
res = [(a, b) for a in listA for b in listB]
  
# printing result
print("The Cartesian Product is : " + str(res))
simondoesstuff

Python List Verständnis kartesische Produkte

[ (x, y) for x in xs for y in ys ]
Stormy Salmon

Pandas kartesische Produkt

a = [1, 2, 3]
b = ["a", "b", "c"]

index = pd.MultiIndex.from_product([a, b], names = ["a", "b"])

pd.DataFrame(index = index).reset_index()
Nasty Narwhal

Ähnliche Antworten wie “Python -kartesischer Produkt”

Fragen ähnlich wie “Python -kartesischer Produkt”

Weitere verwandte Antworten zu “Python -kartesischer Produkt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen