How to multiply all numbers in a list with Python

2 Answers

0 votes
def multiply(lst) : 
    result = 1
    for i in lst: 
         result = result * i  
    return result  
      
lst = [1, 2, 3, 4, 5]  

print(multiply(lst)) 

 
 
'''
run:
 
120
 
'''

 



answered May 25, 2019 by avibootz
0 votes
import numpy 
       
lst = [1, 2, 3, 4, 5]  
 
result = numpy.prod(lst) 
print(result) 
 
  
  
'''
run:
  
120
  
'''

 



answered May 25, 2019 by avibootz
...