how to multiply a int list in python code example
Example 1: python multiply list bt number
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]
Example 2: python multiply all elements in list
import numpy as np
list1 = [1,2,3,4,5]
result = np.prod(list1)
print(result)
>>>120