Answers for "python multiply elements in list"

2

multiply each element in list python

a_list = [1, 2, 3]

multiplied_list = [element * 2 for element in a_list]

# [2, 4, 6]
Posted by: Guest on December-16-2020
0

python multiply all elements in list

import numpy as np

list1 = [1,2,3,4,5]
result = np.prod(list1)

print(result)
>>>120
Posted by: Guest on November-14-2020

Code answers related to "python multiply elements in list"

Python Answers by Framework

Browse Popular Code Answers by Language