python list multiply code example
Example 1: how to multiply in python
answer = number_1 * number_2
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
answer = number_1 * number_2
import numpy as np
list1 = [1,2,3,4,5]
result = np.prod(list1)
print(result)
>>>120