Hello I am trying to learn list comprehension in python but can not find a way to multiply list elements together. Is it possible using list comprehension?
For example:
list=[1,2,3,4]
output should be an integer of the multiplication as in:
answer= 1*2*3*4