Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Digits Multiplication by Daniel_Pereira
def checkio(number):
p = 1
for l in str(number):
p = p * int(l) if l != '0' else p
return p
April 29, 2014