xxxxxxxxxx
# you have a list:
lst = [1, 2, 15, 23, 8, 19, 100]
# you want multiplying the numbers
#you should write a variable and give it the number <1> value:
var =1
# then you write a loop and do it this shit :) :
for number in lst:
var *= number
print(var) #-----> final result
# congratulations! you multiplayed that numbers
# go eat and sleep well and say : i am a new guy in programming. i'll get a the biggest one!
# have a nice day
xxxxxxxxxx
product = 1 # Don't use 0 here, otherwise, you'll get zero
# because anything times zero will be zero.
list = [1, 2, 3]
for x in list:
product *= x