python multiply all elements in list
import numpy as np
list1 = [1,2,3,4,5]
result = np.prod(list1)
print(result)
>>>120
python multiply all elements in list
import numpy as np
list1 = [1,2,3,4,5]
result = np.prod(list1)
print(result)
>>>120
write a python program to multiplies all the items in a list.
l = [1,2,3,4,5]
tot = 1
for x in l:
tot = tot * x
print(tot)
>>> 120
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us