Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by jacekgrycza
def checkio(number):
p=1
for i in str(number):
if int(i)!=0:
p=p*int(i)
return p
Oct. 30, 2016