Answers for "python list multiplication"

1

python list multiplication

import numpy
list1 = [1, 2, 3]
 
# using numpy.prod() to get the multiplications
result = numpy.prod(list1)

# Result = 6
Posted by: Guest on July-12-2021
3

python multiply list

a_list = [1, 2, 3]

a_list = [item * 2 for item in a_list]

print(a_list)
OUTPUT
[2, 4, 6]
Posted by: Guest on July-26-2020
0

python list multiplication

a = [1, 2, 3, 4]
b = [5, 6, 7, 8]
 
result = [num1*num2 for num1, num2 in zip(a,b)]
 
print('Multiplication result is: ', result)
Posted by: Guest on October-18-2021

Code answers related to "python list multiplication"

Python Answers by Framework

Browse Popular Code Answers by Language