“Python Element Wise Multiplicationsliste” Code-Antworten

Python Multiply List BT -Nummer

my_list = [1, 2, 3, 4, 5]
my_new_list = [i * 5 for i in my_list]

>>> print(my_new_list)
[5, 10, 15, 20, 25]
Famous Flamingo

Python Element Wise Multiplicationsliste

# element-wise multiplication of x & y
>>>x = [1,2,3,4]
>>>y = [2,3,4,5]
>>>[a*b for a,b in zip(x,y)]
[2, 6, 12, 20]
Thoughtless Tapir

Ähnliche Antworten wie “Python Element Wise Multiplicationsliste”

Fragen ähnlich wie “Python Element Wise Multiplicationsliste”

Weitere verwandte Antworten zu “Python Element Wise Multiplicationsliste” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen